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