Am trying to edit post by it's id and I would like pass the id a a prop to the EditPost component how do I go about it?
render() {
return (
<Router>
<Switch >
<Route path="/edit/:id">
<EditPost index={/*what do I do here?*/} />
</Route>
</Switch>
</Router>
);
}