Skip to content

Instantly share code, notes, and snippets.

@wholypantalones
Created June 7, 2017 15:27
Show Gist options
  • Save wholypantalones/bf5da1efd3066b184d2f33f4a91985c2 to your computer and use it in GitHub Desktop.
Save wholypantalones/bf5da1efd3066b184d2f33f4a91985c2 to your computer and use it in GitHub Desktop.
Limit map items
var film = this.props.data.slice(0, 5).map((item) => {
return <FilmItem key={item.id} film={item} />
});
return film;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment