mirror of
https://github.com/bellingcat/ukraine-timemap.git
synced 2026-06-11 21:08:36 +03:00
13 lines
323 B
JavaScript
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
|