Why is redirect not working here #11000
-
App.js:
Login.jsx
Home.jsx
Please help me understand why redirect is not working in login page I have followed same as mentioned here: here Am I doing any thing wrong. Please help this noob understand this concept. in simple way |
Beta Was this translation helpful? Give feedback.
Answered by
brophdawg11
Nov 8, 2023
Replies: 1 comment 2 replies
-
|
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
brophdawg11
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
redirect
is a utility function for use in loaders and actions as the docs state, it is not meant for navigating in the component lifecycle. You need to usenavigate
to navigate from the component lifecycle.