From 4c5c361db779588b9a3e87a29a313a8d38012842 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Wed, 18 May 2022 17:12:43 +0200 Subject: [PATCH] Update to respect react-router-dom v6 naming --- javascript/react/react-router.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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");