import React from 'react'; import I18n from 'coral-framework/modules/i18n/i18n'; import translations from 'coral-framework/translations'; const lang = new I18n(translations); // Render in place of a Comment when the author of the comment is ignored const IgnoredCommentTombstone = () => (

{lang.t('commentIsIgnored')}

); export default IgnoredCommentTombstone;