7 lines
229 B
JavaScript
7 lines
229 B
JavaScript
import { createStore, applyMiddleware } from 'redux';
|
|
import thunk from 'redux-thunk';
|
|
import appReducer from '../reducers';
|
|
|
|
export default function configureStore() {
|
|
return createStore(appReducer, applyMiddleware(thunk));
|
|
}
|