mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-01 22:10:27 +00:00
11 lines
256 B
TypeScript
11 lines
256 B
TypeScript
import { createIntl } from '@ali/lowcode-editor-core';
|
|
import en_US from './en-US.json';
|
|
import zh_CN from './zh-CN.json';
|
|
|
|
const { intl, getLocale, setLocale } = createIntl({
|
|
'en-US': en_US,
|
|
'zh-CN': zh_CN,
|
|
});
|
|
|
|
export { intl, getLocale, setLocale };
|