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