Skip to content

Instantly share code, notes, and snippets.

@Adron
Created December 27, 2018 06:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Adron/19c0abb920fbe33ef930582921a0335f to your computer and use it in GitHub Desktop.
Save Adron/19c0abb920fbe33ef930582921a0335f to your computer and use it in GitHub Desktop.
React stuffs.
class ShoppingList extends React.Component {
render() {
return (
<div className="shopping-list">
<h1>Shopping List for {this.props.name}</h1>
<ul>
<li>Instagram</li>
<li>WhatsApp</li>
<li>Oculus</li>
</ul>
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment