Browse Source

Lesson 04 Final

Ryan Florence 9 years ago
parent
commit
90863bba72
2 changed files with 5 additions and 3 deletions
  1. 4 3
      index.js
  2. 1 0
      modules/App.js

+ 4 - 3
index.js

@@ -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'))
 
 

+ 1 - 0
modules/App.js

@@ -10,6 +10,7 @@ export default React.createClass({
           <li><Link to="/about">About</Link></li>
           <li><Link to="/about">About</Link></li>
           <li><Link to="/repos">Repos</Link></li>
           <li><Link to="/repos">Repos</Link></li>
         </ul>
         </ul>
+        {this.props.children}
       </div>
       </div>
     )
     )
   }
   }