mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-05 18:36:41 +00:00
Update to respect react-router-dom v6 naming
This commit is contained in:
parent
68ca4e4f86
commit
4c5c361db7
1 changed files with 5 additions and 5 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Reference in a new issue