import * as React from 'react'; import I18n from 'i18n-js'; import { MutedText } from '../shared/CustomTexts'; interface Props { postUpdateFlagValue: boolean; handlePostUpdateFlag(): void; } const NewCommentUpdateSection = ({ postUpdateFlagValue, handlePostUpdateFlag, }: Props) => (
 
{ postUpdateFlagValue ? {I18n.t('post.new_comment.user_notification')} : null }
); export default NewCommentUpdateSection;