Socialify

Folder ..

Viewing index.ts
13 lines (11 loc) • 266.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
import type { LocaleDefinition } from '../..';
import address from './address';
import name from './name';
import phone_number from './phone_number';

const zh_CN: LocaleDefinition = {
  title: 'Chinese',
  address,
  name,
  phone_number,
};

export default zh_CN;