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