Skip to content
This repository was archived by the owner on Jul 19, 2019. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion lessons/06-params.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}/>
Expand Down
2 changes: 1 addition & 1 deletion lessons/09-index-links.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ We can use `Link` as well by passing it the `onlyActiveOnIndex` prop
That's fine, but we already abstracted away having to know what the
`activeClassName` is with `Nav`.

Remember, in `Nav` we're passing along all of our props to `Link` with
Remember, in `NavLink` we're passing along all of our props to `Link` with
the `{...spread}` syntax, so we can actually add the prop when we render
a `NavLink` and it will make its way down to the `Link`:

Expand Down