mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
14 lines
254 B
TypeScript
14 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 */}
|
||
|
</>
|
||
|
)
|
||
|
}
|