Socialify

Folder ..

Viewing index.ts
15 lines (13 loc) • 296.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
import city from './city';
import city_prefix from './city_prefix';
import default_country from './default_country';
import postcode from './postcode';
import state from './state';

const address: any = {
  city,
  city_prefix,
  default_country,
  postcode,
  state,
};

export default address;