Created
July 3, 2019 16:10
-
-
Save jsmanifest/2fca86082084a7744652d63c10a2be56 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
| { | |
| 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