Skip to content

Instantly share code, notes, and snippets.

@eh3rrera
Created November 15, 2017 23:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eh3rrera/4c1ce51a8a01bf4b582fc0e685875c91 to your computer and use it in GitHub Desktop.
Save eh3rrera/4c1ce51a8a01bf4b582fc0e685875c91 to your computer and use it in GitHub Desktop.
import {
Route,
Link,
Switch
} from 'react-router-dom';
const Messages = ({ match }) => (
<div>
<ul>
...
</ul>
<Switch>
<Route path={`${match.url}/:id(\\d+)`} component={Message} />
<Route
path={match.url}
render={() => <h3>Please select a message</h3>}
/>
</Switch>
</div>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment