Skip to content

Instantly share code, notes, and snippets.

@tmbtech
Last active August 29, 2015 14:17
Show Gist options
  • Save tmbtech/6dbb937bff0603fb1bde to your computer and use it in GitHub Desktop.
Save tmbtech/6dbb937bff0603fb1bde to your computer and use it in GitHub Desktop.
Map over items.
React.createClass({
render() {
let videos = this.props.videos.size > 0 ? this.props.videos.map(video => {
return (
<li key={video.id}>
<a href={video.desc}>{video.headline}</a>
</li>
);
}) : <li> no data found </li>;
return (
<div>
<div>title</div>
<ul>
{videos}
</ul>
</div>
);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment