Files
ukraine-timemap/src/store/index.js
2019-01-18 07:56:53 -05:00

13 lines
323 B
JavaScript

import { createStore, applyMiddleware, compose } from 'redux'
import thunk from 'redux-thunk'
import rootReducer from '../reducers'
const composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose
const store = createStore(
rootReducer,
composeEnhancers(applyMiddleware(thunk))
)
export default store