Skip to content

Instantly share code, notes, and snippets.

@samuelayo
Created January 29, 2018 16:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samuelayo/55de6f13a7e6d3acefc4ce2870913030 to your computer and use it in GitHub Desktop.
Save samuelayo/55de6f13a7e6d3acefc4ce2870913030 to your computer and use it in GitHub Desktop.
showItems() {
var items = [];
for (var i = 0; i < this.state.items; i++) {
items.push(<li key={i}>Item {i}</li>);
}
return items;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment