This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-08-25 10:52:55 -07:00
|
|
|
import { createStore, applyMiddleware } from 'redux';
|
|
|
|
import thunk from 'redux-thunk';
|
2016-08-24 08:56:44 -07:00
|
|
|
import appReducer from '../reducers';
|
|
|
|
|
2016-08-25 10:52:55 -07:00
|
|
|
export default function configureStore() {
|
|
|
|
return createStore(appReducer, applyMiddleware(thunk));
|
2016-08-24 08:56:44 -07:00
|
|
|
}
|