You can navigate conditionally by this way
import { useHistory } from "react-router-dom";function HomeButton() { const history = useHistory(); function handleClick() { history.push("/path/some/where"); } return (<button type="button" onClick={handleClick}> Go home</button> );}