Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created June 29, 2019 19:28
Show Gist options
  • Select an option

  • Save jsmanifest/f5caad5cb5a2bec88dec44ed2dfc33e2 to your computer and use it in GitHub Desktop.

Select an option

Save jsmanifest/f5caad5cb5a2bec88dec44ed2dfc33e2 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