You are trying to use history
hook outside of Router
. Write your function inside Header
component.
Try this inside Header
component
const history = useHistory();
const homeButtonOnClickHandler = () =>{
history.push('/');
}
CLICK HERE to find out more related problems solutions.