import { Components, registerComponent } from 'meteor/vulcan:core'; import React from 'react'; import { FormattedMessage } from 'react-intl'; const CommentsList = ({comments, commentCount}) => { if (commentCount > 0) { return (
{comments.map(comment => )} {/*hasMore ? (ready ? : ) : null*/}
) } else { return (

) } }; CommentsList.displayName = "CommentsList"; registerComponent('CommentsList', CommentsList);