mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
12 lines
No EOL
291 B
JavaScript
12 lines
No EOL
291 B
JavaScript
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; |