routes.js 362 B

1234567891011121314
  1. import React from "react";
  2. import { IndexRoute, Route, Router, hashHistory as history } from "react-router";
  3. import Main from "../components/Main";
  4. import Home from "../components/Home";
  5. const routes = (
  6. <Router history={history}>
  7. <Route path="/" component={Main}>
  8. <IndexRoute component={Home} />
  9. </Route>
  10. </Router>
  11. );
  12. export default routes;