aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/inventoryApp/src/plugin.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'sdnr/wt/odlux/apps/inventoryApp/src/plugin.tsx')
-rw-r--r--sdnr/wt/odlux/apps/inventoryApp/src/plugin.tsx17
1 files changed, 17 insertions, 0 deletions
diff --git a/sdnr/wt/odlux/apps/inventoryApp/src/plugin.tsx b/sdnr/wt/odlux/apps/inventoryApp/src/plugin.tsx
new file mode 100644
index 000000000..52e1d4802
--- /dev/null
+++ b/sdnr/wt/odlux/apps/inventoryApp/src/plugin.tsx
@@ -0,0 +1,17 @@
+// app configuration and main entry point for the app
+
+
+import { faShoppingBag } from '@fortawesome/free-solid-svg-icons'; // select app icon
+
+import applicationManager from '../../../framework/src/services/applicationManager';
+
+import { Dashboard } from './views/dashboard';
+
+export function register() {
+ applicationManager.registerApplication({
+ name: "inventoryApp",
+ icon: faShoppingBag,
+ rootComponent: Dashboard,
+ menuEntry: "Inventory App"
+ });
+}