mirror of
https://github.com/vale981/Vulcan
synced 2025-03-11 13:06:41 -04:00
10 lines
273 B
React
10 lines
273 B
React
![]() |
const PostItemCommenters = props => {
|
||
|
return (
|
||
|
<ul className="post-commenters">
|
||
|
<li>Comments by:</li>
|
||
|
{props.commenters.map(commenter => <li key={commenter._id}>{Users.getDisplayName(commenter)}</li>)}
|
||
|
</ul>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
module.exports = PostItemCommenters;
|