This file contains 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 { applyMiddleware, compose, createStore } from 'redux'; | |
import thunkMiddleware from 'redux-thunk'; | |
import rootReducer from './reducers'; | |
import reactotron from '../reactotron.config'; | |
export default createStore( | |
rootReducer, | |
compose(applyMiddleware(thunkMiddleware), reactotron.createEnhancer()) | |
); |
OlderNewer