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