Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. ReactDOM.render(
  2. <Router history={browserHistory}>
  3. <Route path="/path1" component={App1}>
  4. <Route path="/subpath1" component={Layout1} />
  5. <Route path="/subpath2" component={Layout2} />
  6. </Route>
  7. <Route path="/path2" component={App2}>
  8. <Route path="/subpath1" component={Layout3} />
  9. <Route path="/subpath2" component={Layout4} />
  10. </Route>
  11. </Router>,
  12. document.getElementById('app')
  13. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement