'use client' import type { FC } from 'react' import React from 'react' import { useTranslation } from 'react-i18next' import WarningMask from '.' import Button from '@/app/components/base/button' export type IFormattingChangedProps = { onConfirm: () => void } const FormattingChanged: FC = ({ onConfirm, }) => { const { t } = useTranslation() return ( } /> ) } export default React.memo(FormattingChanged)