in src/store/configureStore.js [5:12]
export default function configureStore() {
const composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose;
return createStore(rootReducer, composeEnhancers(
applyMiddleware(
thunk
)
));
}