import React from 'react' import { Trans, TransProps } from 'react-i18next' type TProps = { k?: TransProps['i18nKey'] } & TransProps const T = ({ k, ...props }: TProps) => export { T }