Initial commit

This commit is contained in:
Arjun Patel
2019-06-09 22:42:29 -07:00
commit c561cdc0a2
29 changed files with 8726 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { combineReducers } from 'redux';
import { authentication } from './auth.reducer';
/*
* We combine all reducers into a single object before updated data is dispatched (sent) to store
* Your entire applications state (store) is just whatever gets returned from all your reducers
* */
const allReducers = combineReducers({
authentication
});
export default allReducers;