'use client' import type { FC } from 'react' import React from 'react' import { useTranslation } from 'react-i18next' import cn from 'classnames' import UpgradeBtn from '../upgrade-btn' import AppsInfo from '../usage-info/apps-info' import s from './style.module.css' import GridMask from '@/app/components/base/grid-mask' const AppsFull: FC<{ loc: string }> = ({ loc, }) => { const { t } = useTranslation() return (
{t('billing.apps.fullTipLine1')}
{t('billing.apps.fullTipLine2')}
) } export default React.memo(AppsFull)