Socialify

Folder ..

Viewing index.ts
21 lines (19 loc) • 437.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
import city from './city';
import city_prefix from './city_prefix';
import city_suffix from './city_suffix';
import country from './country';
import postcode from './postcode';
import state from './state';
import state_abbr from './state_abbr';
import street_name from './street_name';

const address: any = {
  city,
  city_prefix,
  city_suffix,
  country,
  postcode,
  state,
  state_abbr,
  street_name,
};

export default address;