mirror of
https://github.com/vale981/Vulcan
synced 2025-03-11 21:16:40 -04:00
7 lines
153 B
React
7 lines
153 B
React
![]() |
PostList = props => {
|
||
|
return (
|
||
|
<div className="postList">
|
||
|
{props.posts.map(post => <h3 key={post.title}>{post.title}</h3>)}
|
||
|
</div>
|
||
|
)
|
||
|
};
|