store.js 311 B

1234567891011
  1. import reducer from './reducers/reducer';
  2. import thunk from 'redux-thunk';
  3. import { createStore, compose, applyMiddleware } from 'redux';
  4. export const store = createStore(reducer, compose(
  5. applyMiddleware(
  6. thunk,
  7. ),
  8. // window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__()
  9. ));