Skip to content

Instantly share code, notes, and snippets.

@cziem
Created June 28, 2018 22:17
Show Gist options
  • Save cziem/3c3c481acacbd0f38e714cf343333a79 to your computer and use it in GitHub Desktop.
Save cziem/3c3c481acacbd0f38e714cf343333a79 to your computer and use it in GitHub Desktop.
stateless functional component
import React from 'react';
const Menu = () => (
<div className="menu">
<ul>
<li>Home</li>
<li>Events</li>
<li>Pricing</li>
<li>About</li>
</ul>
</div>
);
export default Menu;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment