aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/inventoryApp/src/plugin.tsx
blob: 6022d95697975b3189f62884e775f52ef197035f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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: "inventory",
    icon: faShoppingBag,
    rootComponent: Dashboard,
    menuEntry: "Inventory"
  });
}