14 lines
323 B
TypeScript
14 lines
323 B
TypeScript
import React from 'react';
|
|
import { Trans, TransProps, useTranslation } from 'react-i18next';
|
|
|
|
type Props = Omit<TransProps, 't'>;
|
|
|
|
export default ({ ns, children, ...props }: Props) => {
|
|
const { t } = useTranslation(ns);
|
|
|
|
return (
|
|
<Trans t={t} {...props}>
|
|
{children}
|
|
</Trans>
|
|
);
|
|
};
|