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