diff options
Diffstat (limited to 'devtools/client/application/src/reducers/index.js')
-rw-r--r-- | devtools/client/application/src/reducers/index.js | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/devtools/client/application/src/reducers/index.js b/devtools/client/application/src/reducers/index.js new file mode 100644 index 0000000000..8b93290d9d --- /dev/null +++ b/devtools/client/application/src/reducers/index.js @@ -0,0 +1,28 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +"use strict"; + +const { + combineReducers, +} = require("resource://devtools/client/shared/vendor/redux.js"); +const { + workersReducer, +} = require("resource://devtools/client/application/src/reducers/workers-state.js"); +const { + pageReducer, +} = require("resource://devtools/client/application/src/reducers/page-state.js"); +const { + uiReducer, +} = require("resource://devtools/client/application/src/reducers/ui-state.js"); +const { + manifestReducer, +} = require("resource://devtools/client/application/src/reducers/manifest-state.js"); + +module.exports = combineReducers({ + manifest: manifestReducer, + page: pageReducer, + workers: workersReducer, + ui: uiReducer, +}); |