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

) } }; CommentsList.displayName = "CommentsList"; module.exports = CommentsList;