Guest User

Untitled

a guest
Jun 23rd, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. ...
  2. const Topics = ({match}) => (
  3. <div>
  4. Topics
  5. <ul>
  6. <li><Link to={`${match.url}/render-with-react`}>Render with React</Link></li>
  7. <li><Link to={`${match.url}/components`}>Components</Link></li>
  8. <li><Link to={`${match.url}/props-vs-state`}>Props vs State</Link></li>
  9. </ul>
  10. <Route path="/topics/:topicId" component={Topic} />
  11. </div>
  12. );
Add Comment
Please, Sign In to add comment