Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created July 3, 2019 16:10
Show Gist options
  • Select an option

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

Select an option

Save jsmanifest/2fca86082084a7744652d63c10a2be56 to your computer and use it in GitHub Desktop.
{
items.map(({ name, tongueWidth, weight } = {}) => (
<div style={{ margin: '25px 0' }}>
<div>Name: {name}</div>
<div>Width of their tongue: {tongueWidth}cm</div>
<div>Weight: {weight}lbs</div>
</div>
))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment