import React from 'react'; const PostsCommenters = ({post}) => { return (
{post.commentersArray.map(user => )}
{post.commentCount} Comments
) } PostsCommenters.displayName = "PostsCommenters"; module.exports = PostsCommenters; export default PostsCommenters;