I am currently struggling with nesting routes using react router v4.
The closest example was the route config in the React-Router v4 Documentation.
I want t
In react-router-v4 you don't nest . Instead, you put them inside another .
For instance
should become
with
const Topics = ({ match }) => ( Topics Example topic )
Here is a basic example straight from the react-router documentation.