import React from 'react'; import t from 'coral-framework/services/i18n'; // Render in place of a Comment when the author of the comment is ignored class IgnoredCommentTombstone extends React.Component { render() { return (

{t('framework.comment_is_ignored')}

); } } export default IgnoredCommentTombstone;