UNPKG

@bhupinderanand/react-redux-saga-boilerplate

Version:
19 lines (16 loc) 379 B
import alerts, { alertsState } from './alerts'; import app, { appState } from './app'; import github, { githubState } from './github'; import user, { userState } from './user'; export const initialState = { alerts: alertsState, app: appState, github: githubState, user: userState, }; export default { ...alerts, ...app, ...github, ...user, };