2016-08-31 16:15:12 +02:00
|
|
|
import { createStore, applyMiddleware, compose } from 'redux';
|
2016-08-25 19:52:55 +02:00
|
|
|
import thunk from 'redux-thunk';
|
2016-08-24 17:56:44 +02:00
|
|
|
import appReducer from '../reducers';
|
|
|
|
|
2016-08-31 16:15:12 +02:00
|
|
|
export default function configureStore(initialState) {
|
|
|
|
return createStore(appReducer, initialState, compose(applyMiddleware(thunk), window.devToolsExtension ? window.devToolsExtension() : f => f));
|
2016-08-24 17:56:44 +02:00
|
|
|
}
|