about summary refs log tree commit diff
path: root/app/assets/javascripts/components/store/configureStore.jsx
blob: 9ff28bb42bd69ff4ab1493dd6c8d0ac58440188d (plain) (blame)
1
2
3
4
5
6
7
import { createStore, applyMiddleware } from 'redux';
import thunk from 'redux-thunk';
import appReducer from '../reducers';

export default function configureStore() {
  return createStore(appReducer, applyMiddleware(thunk));
}