aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/performanceHistoryApp/src/plugin.tsx
blob: 3e1263e34e1d6472f99a25be8c7feb841f28831b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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"
  });
}