Skip to content

Instantly share code, notes, and snippets.

@ozgurrgul
Last active June 12, 2018 16:59
Show Gist options
  • Save ozgurrgul/a6bb17a2e4c0984036a515948e4cdf86 to your computer and use it in GitHub Desktop.
Save ozgurrgul/a6bb17a2e4c0984036a515948e4cdf86 to your computer and use it in GitHub Desktop.
render() {
return (
<ul>
{
data.map(item => {
return <li key={item.id}>{item.title}</li>
});
}
</ul>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment