This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import {createStore, applyMiddleware} from 'redux' | |
| import createSagaMiddleware from 'redux-saga'; | |
| import decoristReducers from '../reducers/decorist_reducer' | |
| import sagas from '../sagas/sagas'; | |
| const sagaMiddleware = createSagaMiddleware(); | |
| /** | |
| * Add all the state in local storage |
OlderNewer