import React from 'react'; const CommentsList = ({results, currentUser, hasMore, ready, count, totalCount, loadMore}) => { ({PostsLoadMore, Loading, PostsNoResults, PostsNoMore, CommentsNode} = Telescope.components); if (!!results.length) { return (
{results.map(comment => )} {hasMore ? (ready ? : ) : }
) } else if (!ready) { return (
) } else { return (

No comments to display.

) } }; module.exports = CommentsList;