Vulcan/packages/telescope-posts/lib/components/PostList.jsx

7 lines
No EOL
153 B
JavaScript

PostList = props => {
return (
<div className="postList">
{props.posts.map(post => <h3 key={post.title}>{post.title}</h3>)}
</div>
)
};