import { useNavigate } from "react-router-dom";
const navigateTo = useNavigate();
navigateTo('/somewhere')
//Whatever component that you use history in, HAS to be wrapped in <BrowserRouter>
//App.js
import {useHistory} from "react-router-dom";
const history = useHistory();
function handleButtonClick() {
history.push('/'); // redirect to main page
}
//index.js
<BrowserRouter>
<App.js/>
</BrowserRouter>
history.pushState(state, title[, url])