Skip to content

Instantly share code, notes, and snippets.

@luillyfe
Last active October 31, 2018 19:23
Show Gist options
  • Save luillyfe/fc85d462fb494e12871385650d710e65 to your computer and use it in GitHub Desktop.
Save luillyfe/fc85d462fb494e12871385650d710e65 to your computer and use it in GitHub Desktop.
Stateless Functional Component
import React from "react";
const Menu = props => (
<ul>
{props.options.map(option => <li key={option.id}>{option.name}</li>)}
</ul>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment