@bhupinderanand/react-redux-saga-boilerplate
Version:
Boilerplate with React and Redux with Redux Saga
19 lines (16 loc) • 379 B
text/typescript
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,
};