Skip to content

Instantly share code, notes, and snippets.

@rodesousa
Created January 23, 2018 09:44
Show Gist options
  • Select an option

  • Save rodesousa/f3db868d88037276b6074c41270879c2 to your computer and use it in GitHub Desktop.

Select an option

Save rodesousa/f3db868d88037276b6074c41270879c2 to your computer and use it in GitHub Desktop.
#reactjs
render(){
const numbers = [1, 2, 3, 4, 5];
const listItems = numbers.map((number) =>
<li>{number}</li>
);
return (
<div>{listItems}</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment