|
@@ -7,9 +7,10 @@ import Repos from './modules/Repos'
|
|
|
|
|
|
render((
|
|
render((
|
|
<Router history={hashHistory}>
|
|
<Router history={hashHistory}>
|
|
- <Route path="/" component={App}/>
|
|
|
|
- <Route path="/repos" component={Repos}/>
|
|
|
|
- <Route path="/about" component={About}/>
|
|
|
|
|
|
+ <Route path="/" component={App}>
|
|
|
|
+ <Route path="/repos" component={Repos}/>
|
|
|
|
+ <Route path="/about" component={About}/>
|
|
|
|
+ </Route>
|
|
</Router>
|
|
</Router>
|
|
), document.getElementById('app'))
|
|
), document.getElementById('app'))
|
|
|
|
|