import { get } from 'lodash'; import { PureComponent } from 'react'; import { connect } from 'react-redux'; import FormCheckbox from 'calypso/components/forms/form-checkbox'; import CommentAuthor from 'calypso/my-sites/comments/comment/comment-author'; import CommentAuthorMoreInfo from 'calypso/my-sites/comments/comment/comment-author-more-info'; import { getSiteComment } from 'calypso/state/comments/selectors'; import { getSelectedSiteId } from 'calypso/state/ui/selectors'; export class CommentHeader extends PureComponent { render() { const { commentId, isBulkMode, isPostView, isSelected, showAuthorMoreInfo, isDisabled } = this.props; return (