overleaf/services/web/frontend/js/features/subscription/components/shared/price-exceptions.tsx
Jessica Lawshe 2499ecadcc Merge pull request #11340 from overleaf/jel-react-personal-subscription-dash
[web] Begin to migrate personal subscription dash commons to React

GitOrigin-RevId: 43c096bd72199c8c0a7b40c8fd84a0a12c108217
2023-01-27 09:05:22 +00:00

13 lines
254 B
TypeScript

import { useTranslation } from 'react-i18next'
export function PriceExceptions() {
const { t } = useTranslation()
return (
<>
<p>
<i>* {t('subject_to_additional_vat')}</i>
</p>
{/* TODO: activeCoupons */}
</>
)
}