123456789101112131415161718 |
- import React from 'react'
- import NavLink from './NavLink'
- export default React.createClass({
- render() {
- return (
- <div>
- <h1>React Router Tutorial</h1>
- <ul role="nav">
- <li><NavLink to="/" onlyActiveOnIndex>Home</NavLink></li>
- <li><NavLink to="/about">About</NavLink></li>
- <li><NavLink to="/repos">Repos</NavLink></li>
- </ul>
- {this.props.children}
- </div>
- )
- }
- })
|