Browse Source

removes <IndexRoute> - Not needed in this lesson

Fixes #6

Removes <IndexRoute component={Home}/> which produces error (IndexRoute is not defined).
This line is not needed until lesson#8
Mohamed Shibl 9 năm trước cách đây
mục cha
commit
f0e465e2ab
1 tập tin đã thay đổi với 0 bổ sung1 xóa
  1. 0 1
      lessons/06-params/README.md

+ 0 - 1
lessons/06-params/README.md

@@ -49,7 +49,6 @@ import Repo from './modules/Repo'
 render((
   <Router>
     <Route path="/" component={App}>
-      <IndexRoute component={Home}/>
       <Route path="/repos" component={Repos}/>
       {/* add the new route */}
       <Route path="/repos/:userName/:repoName" component={Repo}/>