Nessuna descrizione

lib-build.js 395B

123456789101112131415
  1. import KiwiIntl from 'kiwi-intl';
  2. import enUsLangs from '../.kiwi/en_US/index.ts';
  3. import zhCNLangs from '../.kiwi/zh_CN/index.ts';
  4. const langs = {
  5. 'en_US': enUsLangs,
  6. 'zh_CN': zhCNLangs
  7. };
  8. export const kiwiIntl = KiwiIntl.init('en_US', langs);
  9. export { Test } from '@components/Common/test.tsx';
  10. export * from '@components/Common/index.ts';
  11. export * from '@components/Payment/index.ts';