Last active
October 31, 2018 19:23
-
-
Save luillyfe/fc85d462fb494e12871385650d710e65 to your computer and use it in GitHub Desktop.
Stateless Functional Component
This file contains 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"; | |
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