File size: 620 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import {
COUNTRIES_DOMAINS_FETCH,
COUNTRIES_SMS_FETCH,
COUNTRIES_WOOCOMMERCE_FETCH,
} from 'calypso/state/action-types';
import 'calypso/state/data-layer/wpcom/domains/countries-list/index.js';
import 'calypso/state/data-layer/wpcom/meta/sms-country-codes';
import 'calypso/state/data-layer/wpcom/woocommerce/countries/regions';
import 'calypso/state/countries/init';
export const fetchDomainCountries = () => ( { type: COUNTRIES_DOMAINS_FETCH } );
export const fetchSmsCountries = () => ( { type: COUNTRIES_SMS_FETCH } );
export const fetchWooCommerceCountries = () => ( { type: COUNTRIES_WOOCOMMERCE_FETCH } );
|