import React from 'react'; const CommentsLoadMore = ({loadMore, count, totalCount}) => { const label = totalCount ? `Load More (${count}/${totalCount})` : "Load More"; return {label} } CommentsLoadMore.displayName = "CommentsLoadMore"; module.exports = CommentsLoadMore;