Last active
November 19, 2017 23:50
-
-
Save juankuquintana/edd9cadff111cee9f609d95daefdaea4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from 'react'; | |
| import { Link } from 'react-router'; | |
| export default React.createClass({ | |
| render() { | |
| return ( | |
| <div> | |
| <h1>Samsung TV + React + React Router Tutorial</h1> | |
| <ul role="nav"> | |
| <li><Link to="/samsung">About Samsung</Link></li> | |
| <li><Link to="/react">About React</Link></li> | |
| </ul> | |
| {this.props.children} | |
| </div> | |
| ) | |
| } | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment