diff options
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 }); |