1234567891011121314151617 |
- import React from "react";
- import { IndexRoute, Route, Router, hashHistory as history } from "react-router";
- import Main from "../components/Main";
- import Home from "../components/Home";
- import PromptContainer from "../containers/PromptContainer";
- const routes = (
- <Router history={history}>
- <Route path="/" component={Main}>
- <IndexRoute component={Home} />
- <Route path="playerOne" component={PromptContainer} header="Player One" />
- <Route path="playerTwo/:playerOne" component={PromptContainer} header="Player Two" />
- </Route>
- </Router>
- );
- export default routes;
|