소스 검색

Merge pull request #122 from ioctaptceb/ch-6-remove-index-route

Remove IndexRoute from ch 06
Tim Dorr 9 년 전
부모
커밋
6900ab2564
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  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}/>