Skip to content

Instantly share code, notes, and snippets.

@EdwinGuzman
Last active September 28, 2016 22:03
Show Gist options
  • Save EdwinGuzman/a17054173960347b070fb5b78a87228f to your computer and use it in GitHub Desktop.
Save EdwinGuzman/a17054173960347b070fb5b78a87228f to your computer and use it in GitHub Desktop.
// React Router v0.13
<Route path="/" name="root" handler={Application}>
<Route path="blog" name="blogHome" handler={BlogsWrapper} />
<!-- more routes -->
</Route>
// React Router v2.0
<Route path="/" component={Application}>
<Route path="blog" component={BlogsWrapper} />
<!-- more routes -->
</Route>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment