Skip to content

Instantly share code, notes, and snippets.

@libotti
Last active June 14, 2020 21:48
Show Gist options
  • Save libotti/e150f08a8ae35b9483f4d1f4b6df0b5c to your computer and use it in GitHub Desktop.
Save libotti/e150f08a8ae35b9483f4d1f4b6df0b5c to your computer and use it in GitHub Desktop.
render() {
const {posts} = this.state;
return(
<div>
<ol className="item">
{
posts.map(post => (
<li key={post.id} align="start">
<div>
<p className="title">{post.title}</p>
<p className="body">{post.body}</p>
</div>
</li>
))
}
</ol>
</div>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment