diff options
author | Michael Foiani <mfoiani2019@communiyschoolnaples.org> | 2018-08-05 00:11:07 -0400 |
---|---|---|
committer | Michael Foiani <mfoiani2019@communiyschoolnaples.org> | 2018-08-05 00:11:07 -0400 |
commit | 2f1f4a56e141acdddd00d534f70ed5fad91a217a (patch) | |
tree | 358f932321913d65925bd6d133d3ef9638801089 /src/store.js | |
parent | c518aedffdae943a84c53763629d0785043f6a3f (diff) |
Updated components to work with new redux files.
Diffstat (limited to 'src/store.js')
-rw-r--r-- | src/store.js | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/store.js b/src/store.js index 87ca9f8..7f34d84 100644 --- a/src/store.js +++ b/src/store.js @@ -17,7 +17,11 @@ import { import thunk from 'redux-thunk'; import { lazyReducerEnhancer } from 'pwa-helpers/lazy-reducer-enhancer.js'; -import app from './reducers/app.js'; +import app from './reducers/app.js'; +import firebaseAuth from './reducers/firebaseAuth.js'; +import firebaseFirestore from './reducers/firebaseFirestore.js'; +import firebaseAdmin from './reducers/firebaseAdmin.js'; + // Sets up a Chrome extension for time travel debugging. // See https://github.com/zalmoxisus/redux-devtools-extension for more information. @@ -35,5 +39,8 @@ export const store = createStore( // Initially loaded reducers. store.addReducers({ - app + app, + firebaseAuth, + firebaseFirestore, + firebaseAdmin }); |