occsn-checkout
Version:
Occasion checkout experience boilerplate component built using React-Redux and Mitragyna
14 lines (11 loc) • 354 B
JavaScript
// Manifest of all reducers for the app
import appReducer, { $$initialState as $$appState } from './appReducer';
import calendarReducer, { $$initialState as $$calendarState } from './calendarReducer';
export default {
$$appStore: appReducer,
$$calendarStore: calendarReducer,
};
export const initialStates = {
$$appState,
$$calendarState,
};