aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/inventoryApp/src/handlers/panelHandler.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sdnr/wt/odlux/apps/inventoryApp/src/handlers/panelHandler.ts')
-rw-r--r--sdnr/wt/odlux/apps/inventoryApp/src/handlers/panelHandler.ts11
1 files changed, 0 insertions, 11 deletions
diff --git a/sdnr/wt/odlux/apps/inventoryApp/src/handlers/panelHandler.ts b/sdnr/wt/odlux/apps/inventoryApp/src/handlers/panelHandler.ts
deleted file mode 100644
index 7912d0ea5..000000000
--- a/sdnr/wt/odlux/apps/inventoryApp/src/handlers/panelHandler.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-import { IActionHandler } from '../../../../framework/src/flux/action';
-
-import { SetPanelAction } from '../actions/panelActions';
-import { PanelId } from '../models/panelId';
-
-export const currentOpenPanelHandler: IActionHandler<PanelId> = (state = null, action) => {
- if (action instanceof SetPanelAction) {
- state = action.panelId;
- }
- return state;
-}; \ No newline at end of file