Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created June 29, 2019 19:28
Show Gist options
  • Save jsmanifest/8bc905228127e9c8a1c9be63f1ba5fa4 to your computer and use it in GitHub Desktop.
Save jsmanifest/8bc905228127e9c8a1c9be63f1ba5fa4 to your computer and use it in GitHub Desktop.
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