mon-entreprise/source/components/index.tsx

9 lines
221 B
TypeScript

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