react-i18next.ts 193 B

12345
  1. import type { FC, PropsWithChildren } from 'react';
  2. export const useTranslation = () => ({ t: (key: string) => key });
  3. export const Trans: FC<PropsWithChildren> = ({ children }) => children;