function Page1() {
const history = useHistory();
const handleClick = () => {
тут какое-то действие
history.push('/page2')
}
...
}
...
function App() {
return (
<BrowserRouter>
<Switch>
<Route path="/page1" component={Page1}/>
<Route path="/page2" component={Page2}/>
</Switch>
</BrowserRouter>
)
}