mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
2499ecadcc
[web] Begin to migrate personal subscription dash commons to React GitOrigin-RevId: 43c096bd72199c8c0a7b40c8fd84a0a12c108217
13 lines
254 B
TypeScript
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 */}
|
|
</>
|
|
)
|
|
}
|