diff --git a/javascript/react/react-router.md b/javascript/react/react-router.md index 54338c5..94f495a 100644 --- a/javascript/react/react-router.md +++ b/javascript/react/react-router.md @@ -67,12 +67,12 @@ function Component(props) { ### Redirecting ```js -import { Redirect } from "react-router-dom"; +import { Navigate } from "react-router-dom"; -// redirects to another URL, should'nt be rendered on component mount but after an action - - -{ condition && } // redirect if condition is true +// redirects to another URL on render, shouldn't be rendered on component mount but after an action + + +{ condition && } // redirect if condition is true // or redirect manipulating the history (always in props) props.history.push("/new-route");