import React from 'react'; import {injectIntl, FormattedMessage} from 'react-intl'; const CommentsList = ({results, currentUser, hasMore, ready, count, totalCount, loadMore}) => { if (!!results.length) { return (
{results.map(comment => )} {hasMore ? (ready ? : ) : null}
) } else if (!ready) { return (
) } else { return (

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