Socialify

Folder ..

Viewing index.ts
23 lines (21 loc) • 505.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
import city from './city';
import city_name from './city_name';
import city_suffix from './city_suffix';
import postcode from './postcode';
import state from './state';
import state_abbr from './state_abbr';
import street_name from './street_name';
import street_root from './street_root';
import street_suffix from './street_suffix';

const address: any = {
  city,
  city_name,
  city_suffix,
  postcode,
  state,
  state_abbr,
  street_name,
  street_root,
  street_suffix,
};

export default address;