I have tried all the suggested ways in other threads and it is still not working which is why I am posting the question.
So I have history.js looking li
history.js
use the hook: useHistory
import { useHistory } from "react-router-dom"; function HomeButton() { let history = useHistory(); function handleClick() { history.push("/home"); } return ( Go home ); }