Skip to content

Instantly share code, notes, and snippets.

@juankuquintana
Last active November 19, 2017 23:50
Show Gist options
  • Select an option

  • Save juankuquintana/edd9cadff111cee9f609d95daefdaea4 to your computer and use it in GitHub Desktop.

Select an option

Save juankuquintana/edd9cadff111cee9f609d95daefdaea4 to your computer and use it in GitHub Desktop.
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