|
@@ -1,5 +1,5 @@
|
|
|
import React from 'react'
|
|
|
-import { Link } from 'react-router'
|
|
|
+import NavLink from './NavLink'
|
|
|
|
|
|
export default React.createClass({
|
|
|
render() {
|
|
@@ -7,8 +7,8 @@ export default React.createClass({
|
|
|
<div>
|
|
|
<h1>React Router Tutorial</h1>
|
|
|
<ul role="nav">
|
|
|
- <li><Link to="/about">About</Link></li>
|
|
|
- <li><Link to="/repos">Repos</Link></li>
|
|
|
+ <li><NavLink to="/about">About</NavLink></li>
|
|
|
+ <li><NavLink to="/repos">Repos</NavLink></li>
|
|
|
</ul>
|
|
|
{this.props.children}
|
|
|
</div>
|