| 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(); | |