From 214a31a7c9fa4384e9c3855b8e1d1d37736d0914 Mon Sep 17 00:00:00 2001
From: Mehdi Raash <leaksin@gmail.com>
Date: Sat, 15 Oct 2016 23:14:04 +0330
Subject: [PATCH 1/2] missing this.props.children

---
 lessons/07-more-nesting/modules/Repos.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lessons/07-more-nesting/modules/Repos.js b/lessons/07-more-nesting/modules/Repos.js
index 6393b667..bd4c9b82 100644
--- a/lessons/07-more-nesting/modules/Repos.js
+++ b/lessons/07-more-nesting/modules/Repos.js
@@ -10,6 +10,7 @@ export default React.createClass({
           <li><Link to="/repos/reactjs/react-router">React Router</Link></li>
           <li><Link to="/repos/facebook/react">React</Link></li>
         </ul>
+        {this.props.children}
       </div>
     )
   }

From 1f39df2139b90be82519235788376684da2a27fc Mon Sep 17 00:00:00 2001
From: Mehdi Raash <leaksin@gmail.com>
Date: Sat, 15 Oct 2016 23:22:37 +0330
Subject: [PATCH 2/2] missing...

---
 lessons/07-more-nesting/index.js | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/lessons/07-more-nesting/index.js b/lessons/07-more-nesting/index.js
index 95a876e5..ddc3f588 100644
--- a/lessons/07-more-nesting/index.js
+++ b/lessons/07-more-nesting/index.js
@@ -9,8 +9,9 @@ import Repo from './modules/Repo'
 render((
   <Router history={hashHistory}>
     <Route path="/" component={App}>
-      <Route path="/repos" component={Repos}/>
-      <Route path="/repos/:userName/:repoName" component={Repo}/>
+      <Route path="/repos" component={Repos}>
+        <Route path="/repos/:userName/:repoName" component={Repo}/>
+      </Route>
       <Route path="/about" component={About}/>
     </Route>
   </Router>