Socialify

Folder ..

Viewing index.ts
13 lines (11 loc) • 275.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_TW: LocaleDefinition = {
  title: 'Chinese (Taiwan)',
  address,
  name,
  phone_number,
};

export default zh_TW;