aboutsummaryrefslogtreecommitdiffstats
path: root/ui/imports/ui/reducers/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/imports/ui/reducers/index.js')
-rw-r--r--ui/imports/ui/reducers/index.js25
1 files changed, 0 insertions, 25 deletions
diff --git a/ui/imports/ui/reducers/index.js b/ui/imports/ui/reducers/index.js
deleted file mode 100644
index 936f68a..0000000
--- a/ui/imports/ui/reducers/index.js
+++ /dev/null
@@ -1,25 +0,0 @@
-import { combineReducers } from 'redux';
-
-import { navigation } from './navigation';
-import { searchInterestedParties } from './search-interested-parties';
-import { reducer as environmentPanel } from './environment-panel.reducer';
-import { reducer as i18n } from './i18n.reducer';
-import { reducer as graphTooltipWindow } from './graph-tooltip-window.reducer';
-import { reducer as vedgeInfoWindow } from './vedge-info-window.reducer';
-import { reducer as mainApp } from './main-app.reducer';
-
-const calipsoApp = combineReducers({
- api: combineReducers({
- navigation,
- searchInterestedParties,
- i18n
- }),
- components: combineReducers({
- mainApp: mainApp,
- environmentPanel,
- graphTooltipWindow,
- vedgeInfoWindow
- })
-});
-
-export default calipsoApp;