Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 775 Bytes

passing-props-down-to-react-router-route.md

File metadata and controls

29 lines (24 loc) · 775 Bytes

Passing Props Down To React-Router Route

When using react-router, you'll often use the component prop to have a certain component rendered.

<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.

<Route
  path="/my/path"
  render={(routeProps) => (
    <MyComponent {...routeProps} {...props} />
  )}
/>

The two spread operator statements are essential. They will pass down the route props that Route would have passed down plus the additional set of props that you want to pass down.