Skip to content

Instantly share code, notes, and snippets.

@hpjaj
Created November 14, 2018 17:41
Show Gist options
  • Save hpjaj/1bcc399f56b6b227d5b338ef4afedfb2 to your computer and use it in GitHub Desktop.
Save hpjaj/1bcc399f56b6b227d5b338ef4afedfb2 to your computer and use it in GitHub Desktop.
// app/javascript/components/Posts.js
...
renderAllPosts = () => {
return(
<ul>
{this.state.posts.map(post => (
<li key={post}>{post}</li>
))}
</ul>
)
}
render() {
return (
<div>
{this.renderAllPosts()}
</div>
)
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment