10 lines
233 B
JavaScript
10 lines
233 B
JavaScript
import { applyMiddleware, compose, createStore } from 'redux';
|
|
import thunk from 'redux-thunk';
|
|
|
|
import rootReducer from '../reducers/index.js';
|
|
|
|
export const store = createStore(
|
|
rootReducer,
|
|
compose(applyMiddleware(thunk)),
|
|
);
|