mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 20:46:40 -04:00
10 lines
No EOL
273 B
JavaScript
10 lines
No EOL
273 B
JavaScript
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; |