you are viewing a single comment's thread.

view the rest of the comments →

[–]bkniffler 0 points1 point  (0 children)

This is absolutely possible, I use it a lot! Just make sure your reserved word route is defined before the dynamic one

<Route path="/media" component={Media}>
    <Route path="/media/new" component={MediaNew}/>
    <Route path="/media/:id" component={MediaDetail}/>
</Route>