import React from 'react'; import { CommentDetail } from 'plugin-api/beta/client/components'; import PropTypes from 'prop-types'; import { t } from 'plugin-api/beta/client/services'; const SpamLabel = () => ( ); SpamLabel.propTypes = { comment: PropTypes.shape({ actions: PropTypes.array, spam: PropTypes.spam, }), }; export default SpamLabel;