misc_pterodactyl-panel/resources/scripts/components/elements/Translate.tsx
2022-06-11 14:52:41 -04:00

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>
);
};