Created
June 7, 2017 15:27
-
-
Save wholypantalones/bf5da1efd3066b184d2f33f4a91985c2 to your computer and use it in GitHub Desktop.
Limit map items
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
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