Skip to content
Advertisement

how to redirect to home page in react using useHistory Hook

I am trying to redirect signup function to home page in react, using usehistory Hook when i run my code it display such errore ::

JavaScript

versions:”react”: “^17.0.2”, “react-router-dom”: “^6.2.1”

below is my login code given:

JavaScript

Advertisement

Answer

useHistory is not available in v6, useNavigate Instead of useHistory,

Check here https://reactrouter.com/docs/en/v6/upgrading/v5#use-usenavigate-instead-of-usehistory

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement