Passing Props Down To React-Router Route
<Route
path="/my/path"
component={MyComponent}
/><Route
path="/my/path"
render={(routeProps) => (
<MyComponent {...routeProps} {...props} />
)}
/>Last updated
<Route
path="/my/path"
component={MyComponent}
/><Route
path="/my/path"
render={(routeProps) => (
<MyComponent {...routeProps} {...props} />
)}
/>Last updated