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_root from './city_root';
import country from './country';
import default_country from './default_country';
import postcode from './postcode';

const address: any = {
  city,
  city_root,
  country,
  default_country,
  postcode,
};

export default address;