Is there a way to pass props from the Parent component down to the Child component using react-router?
<Route path="/parent/" component={Parent} />
<Route path="/parent/child/" component={Child} />
Notice Child is not rendered in the Parent's render function.
Thanks