import type { TransProps } from 'react-i18next'; import { Trans, useTranslation } from 'react-i18next'; type Props = Omit, 't'>; function Translate({ ns, children, ...props }: Props) { const { t } = useTranslation(ns); return ( {children} ); } export default Translate;