Skip to content

Instantly share code, notes, and snippets.

@kayode-adechinan
Last active June 13, 2019 16:14
Show Gist options
  • Save kayode-adechinan/3cfd51942db511015bd9f386228204b3 to your computer and use it in GitHub Desktop.
Save kayode-adechinan/3cfd51942db511015bd9f386228204b3 to your computer and use it in GitHub Desktop.
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