- Initial commit

This commit is contained in:
2019-07-09 03:48:02 -04:00
commit 8ecf036cc4
105 changed files with 11254 additions and 0 deletions

9
app/store/index.js Normal file
View File

@@ -0,0 +1,9 @@
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)),
);