I am new to react-router and I just started writing an app using react-router V4. I would like to to pass props to components rendered by and I am w
I'm fairly new to react-router and came across a similar issue. I've created a wrapper based on the Documentation and that seems to work.
// Wrap Component Routes function RouteWrapper(props) { const {component: Component, ...opts } = props return ( ( )}/> ) }
So far so good