10 lines
147 B
TypeScript
10 lines
147 B
TypeScript
export const t = (key: string) => {
|
|
return key;
|
|
};
|
|
|
|
export function onLanguageChanged() {}
|
|
|
|
export function useTranslation() {
|
|
return { t };
|
|
}
|