import Config from "../../../../utils/config"; export default { state: { test: "1234", a: null, b: null }, reducers: { updateState(state, { payload }) { return { ...state, ...payload }; } }, effects: { *info({ payload }, { call, put }) {} }, subscriptions: { // setupHistory({ dispatch, history }) { // history.listen(location => {}); // }, } };