mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
12 lines
291 B
React
12 lines
291 B
React
![]() |
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;
|