How do you get nested routing with react-router-redux (5.0.0-alpha.9)?
I want to be able to route to the likes of /event/create
I am able to successfully get to a route of /event/:id
, e.g. /event/1234
I have -
<Route exact path="/" component={HomePage} />
<Route path="/event/:id" component={EventView} />
<Route path="/event/create" component={EventCreate} />
It looks as though when I go to /event/create
is routing to /event/:id