hyper/lib/store/configure-store.prod.ts

14 lines
493 B
TypeScript
Raw Normal View History

import {createStore, applyMiddleware} from 'redux';
import thunk from 'redux-thunk';
import rootReducer from '../reducers/index';
import effects from '../utils/effects';
import * as plugins from '../utils/plugins';
import writeMiddleware from './write-middleware';
2020-01-02 08:49:57 -09:00
import {HyperState, HyperThunkDispatch} from '../hyper';
export default () =>
2020-01-02 08:49:57 -09:00
createStore(
rootReducer,
applyMiddleware<HyperThunkDispatch, HyperState>(thunk, plugins.middleware, thunk, writeMiddleware, effects)
);