Created
June 29, 2019 19:28
-
-
Save jsmanifest/f5caad5cb5a2bec88dec44ed2dfc33e2 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