'use client' import type { FC } from 'react' import * as React from 'react' import { useTranslation } from 'react-i18next' import GridMask from '@/app/components/base/grid-mask' import { cn } from '@/utils/classnames' import Modal from '../../base/modal' import UpgradeBtn from '../upgrade-btn' import s from './style.module.css' import Usage from './usage' type Props = { show: boolean onHide: () => void } const AnnotationFullModal: FC = ({ show, onHide, }) => { const { t } = useTranslation() return (
{t('annotatedResponse.fullTipLine1', { ns: 'billing' })}
{t('annotatedResponse.fullTipLine2', { ns: 'billing' })}
) } export default React.memo(AnnotationFullModal)