summaryrefslogtreecommitdiffstats
path: root/src/app/AppStore.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/AppStore.js')
-rw-r--r--src/app/AppStore.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/app/AppStore.js b/src/app/AppStore.js
index 9205937..842b683 100644
--- a/src/app/AppStore.js
+++ b/src/app/AppStore.js
@@ -27,7 +27,7 @@ import InventoryReducer from './inventory/InventoryReducer.js';
import VnfSearchReducer from './vnfSearch/VnfSearchReducer.js';
import GlobalInlineMessageBarReducer from 'app/globalInlineMessageBar/GlobalInlineMessageBarReducer.js';
import ExtensibilityReducer from 'app/extensibility/ExtensibilityReducer.js';
-
+import ConfigurableViewReducer from 'app/configurableViews/ConfigurableViewReducer.js';
function createCompose() {
@@ -45,7 +45,8 @@ export const storeCreator = (initialState) => createStore(
inventoryReducer: InventoryReducer,
vnfSearch: VnfSearchReducer,
globalInlineMessageBar: GlobalInlineMessageBarReducer,
- extensibility: ExtensibilityReducer
+ extensibility: ExtensibilityReducer,
+ configurableViews: ConfigurableViewReducer
}),
initialState,
createCompose()