routes.js 596 B

1234567891011121314151617
  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. import PromptContainer from "../containers/PromptContainer";
  6. const routes = (
  7. <Router history={history}>
  8. <Route path="/" component={Main}>
  9. <IndexRoute component={Home} />
  10. <Route path="playerOne" component={PromptContainer} header="Player One" />
  11. <Route path="playerTwo/:playerOne" component={PromptContainer} header="Player Two" />
  12. </Route>
  13. </Router>
  14. );
  15. export default routes;