I am trying to build a parallax website with react and react-router
In most react-router examples I found, target dom node is replaced with Handler corresponding to the route.
var routes = (
<Route handler={App} path="/">
<DefaultRoute handler={Home} />
<Route name="about" handler={About} />
<Route name="users" handler={Users} />
</Route>
);
Router.run(routes, function (Handler) {
React.render(<Handler/>, document.body);
});
How can I render all the route handlers into single page and jump to specific location in a page with react-router ?