Skip to content

Instantly share code, notes, and snippets.

@swaathi
Created September 16, 2015 17:58
Show Gist options
  • Save swaathi/f8fb0112efaf4dc13d2a to your computer and use it in GitHub Desktop.
Save swaathi/f8fb0112efaf4dc13d2a to your computer and use it in GitHub Desktop.
var Songs = React.createClass({
render() {
var showSongs = (song) => <Song name={song.name} artist={song.artist} key={song.id}/>;
return <ul>{this.props.songs.map(showSongs)}</ul>;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment