mirror of
https://github.com/jbranchaud/til
synced 2026-01-03 07:08:01 +00:00
Add Passing Props Down To React-Router Route as a react til
This commit is contained in:
29
react/passing-props-down-to-react-router-route.md
Normal file
29
react/passing-props-down-to-react-router-route.md
Normal file
@@ -0,0 +1,29 @@
|
||||
# Passing Props Down To React-Router Route
|
||||
|
||||
When using [react-router](https://github.com/ReactTraining/react-router),
|
||||
you'll often use the `component` prop to have a certain component rendered.
|
||||
|
||||
```javascript
|
||||
<Route
|
||||
path="/my/path"
|
||||
component={MyComponent}
|
||||
/>
|
||||
```
|
||||
|
||||
If, however, you need to pass props down into `MyComponent`, then you'll
|
||||
want to use the `render` prop with an inline function.
|
||||
|
||||
```javascript
|
||||
<Route
|
||||
path="/my/path"
|
||||
render={(routeProps) => (
|
||||
<MyComponent {...routeProps} {...props} />
|
||||
)}
|
||||
/>
|
||||
```
|
||||
|
||||
The two spread operator statements are essential. They will pass down the
|
||||
[route
|
||||
props](https://reacttraining.com/react-router/web/api/Route/Route-props)
|
||||
that `Route` would have passed down plus the additional set of props that
|
||||
you want to pass down.
|
||||
Reference in New Issue
Block a user