File size: 478 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import config from '@automattic/calypso-config';
import { Onboard, Plans, Site, StepperInternal, User } from '@automattic/data-stores';
export const ONBOARD_STORE = Onboard.register();
export const STEPPER_INTERNAL_STORE = StepperInternal.register();
export const SITE_STORE = Site.register( {
client_id: config( 'wpcom_signup_id' ),
client_secret: config( 'wpcom_signup_key' ),
} );
export const USER_STORE = User.register();
export const PLANS_STORE = Plans.register();
|