Socialify

Folder ..

Viewing index.ts
25 lines (23 loc) • 618.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import building_number from './building_number';
import city_prefix from './city_prefix';
import city_suffix from './city_suffix';
import country from './country';
import default_country from './default_country';
import postcode from './postcode';
import secondary_address from './secondary_address';
import state from './state';
import state_abbr from './state_abbr';
import street_suffix from './street_suffix';

const address: any = {
  building_number,
  city_prefix,
  city_suffix,
  country,
  default_country,
  postcode,
  secondary_address,
  state,
  state_abbr,
  street_suffix,
};

export default address;