Last active
February 15, 2020 17:40
-
-
Save CommoDor64/77de18c650867a670c22c2a726e1911a 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
function App() { | |
return( | |
<div> | |
{ [1,2,3,4,5].map( (item) => <div>"item number" + item</div> ) } | |
[<div>item1</div>,<div>item2</div>,<div>item3</div>,<div>item4</div>] | |
</div> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment