//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>