Files
leasepal-home/src/locales/index.ts
liuhanhua 4e03ba571c init
2025-09-26 17:36:50 +08:00

15 lines
211 B
TypeScript

import en from './en.json';
import zh from './zh.json';
import th from './th.json';
export interface Messages {
[key: string]: any;
}
const messages: Messages = {
en,
zh,
th
};
export default messages;