import React from 'react'; import PropTypes from 'prop-types'; import { name } from '../../package.json'; class CommentContent extends React.Component { render() { const { comment } = this.props; return comment.htmlBody ? (
) : (
{comment.body}
); } } CommentContent.propTypes = { comment: PropTypes.object.isRequired, }; export default CommentContent;