Created
June 29, 2019 19:28
-
-
Save jsmanifest/8bc905228127e9c8a1c9be63f1ba5fa4 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 App = ({ items = [] }) => ( | |
<div> | |
<h2>Here are your items:</h2> | |
<div> | |
{!!items.length && | |
items.map((item) => <div key={item.label}>{item.label}</div>)} | |
</div> | |
</div> | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment