'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 UpgradeBtn from '../upgrade-btn' import s from './style.module.css' import Usage from './usage' const AnnotationFull: FC = () => { const { t } = useTranslation() return (
{t('annotatedResponse.fullTipLine1', { ns: 'billing' })}
{t('annotatedResponse.fullTipLine2', { ns: 'billing' })}
) } export default React.memo(AnnotationFull)