Update to respect react-router-dom v6 naming

This commit is contained in:
Marcello 2022-05-18 17:12:43 +02:00 committed by GitHub
parent 68ca4e4f86
commit 4c5c361db7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
<Redirect to="/route" />
<Redirect from="/old-route" to="/new-route" />
{ condition && <Redirect to="/route" /> } // redirect if condition is true
// redirects to another URL on render, shouldn't be rendered on component mount but after an action
<Navigate to="/route" />
<Navigate from="/old-route" to="/new-route" />
{ condition && <Navigate to="/route" /> } // redirect if condition is true
// or redirect manipulating the history (always in props)
props.history.push("/new-route");