dry-wash-pl/__mocks__/react-i18next.ts

10 lines
191 B
TypeScript
Raw Normal View History

2025-02-09 11:02:27 +03:00
import localeRu from '../locales/ru.json';
module.exports = {
useTranslation: (_, { keyPrefix }) => {
return {
t: (key: string) => localeRu[`${keyPrefix}.${key}`],
};
}
};