Last active
June 13, 2019 16:14
-
-
Save kayode-adechinan/3cfd51942db511015bd9f386228204b3 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 numbers = [1, 2, 3, 4, 5]; | |
const listItems = numbers.map((number) => | |
<li>{number}</li> | |
); | |
ReactDOM.render( | |
<ul>{listItems}</ul>, | |
document.getElementById('root') | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment