aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/performanceHistoryApp/src/plugin.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'sdnr/wt/odlux/apps/performanceHistoryApp/src/plugin.tsx')
-rw-r--r--sdnr/wt/odlux/apps/performanceHistoryApp/src/plugin.tsx17
1 files changed, 17 insertions, 0 deletions
diff --git a/sdnr/wt/odlux/apps/performanceHistoryApp/src/plugin.tsx b/sdnr/wt/odlux/apps/performanceHistoryApp/src/plugin.tsx
new file mode 100644
index 000000000..3e1263e34
--- /dev/null
+++ b/sdnr/wt/odlux/apps/performanceHistoryApp/src/plugin.tsx
@@ -0,0 +1,17 @@
+
+import { faBook } from '@fortawesome/free-solid-svg-icons';
+
+import applicationManager from '../../../framework/src/services/applicationManager';
+
+import performanceHistoryRootHandler from './handlers/performanceHistoryRootHandler';
+import PerformanceHistoryApplication from './views/performanceHistoryApplication';
+
+export function register() {
+ applicationManager.registerApplication({
+ name: "performanceHistory",
+ icon: faBook,
+ rootComponent: PerformanceHistoryApplication,
+ rootActionHandler: performanceHistoryRootHandler,
+ menuEntry: "Performance"
+ });
+} \ No newline at end of file