Vulcan/packages/nova-components/lib/posts/list/PostCommenters.jsx

12 lines
291 B
React
Raw Normal View History

2016-02-19 10:12:08 +09:00
const PostCommenters = props => {
return (
<div className="post-commenters">
<h4>Comments by</h4>
<ul>
{props.commenters.map(commenter => <li key={commenter._id}>{Users.getDisplayName(commenter)}</li>)}
</ul>
</div>
)
}
module.exports = PostCommenters;