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