mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 12:38:39 -09:00
9 lines
392 B
JavaScript
9 lines
392 B
JavaScript
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';
|
|
|
|
export default () =>
|
|
createStore(rootReducer, applyMiddleware(thunk, plugins.middleware, thunk, writeMiddleware, effects));
|