Socialify

Folder ..

Viewing index.ts
13 lines (11 loc) • 258.0 B

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

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

export default address;