Fixes #6 Removes <IndexRoute component={Home}/> which produces error (IndexRoute is not defined). This line is not needed until lesson#8
@@ -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}/>