Created
August 26, 2020 02:17
-
-
Save ericelliott/1b70686bba13babb822a812eb58984b4 to your computer and use it in GitHub Desktop.
JSX Example
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
const ItemList = ({ items }) => ( | |
<ul> | |
{items.map((item) => ( | |
<li key={item.id}> | |
<div>{item.name}</div> | |
</li> | |
))} | |
</ul> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment