Files
chat/client/shared/i18n/__mocks__/index.ts

10 lines
147 B
TypeScript
Raw Normal View History

2026-04-25 16:36:34 +08:00
export const t = (key: string) => {
return key;
};
export function onLanguageChanged() {}
export function useTranslation() {
return { t };
}