import React from 'react'; import { PanelPetSUV, PanelROIThresholdExport } from './Panels'; import { Toolbox } from '@ohif/ui-next'; import PanelTMTV from './Panels/PanelTMTV'; function getPanelModule({ commandsManager, extensionManager, servicesManager }) { const wrappedPanelPetSuv = () => { return ( ); }; const wrappedROIThresholdToolbox = () => { return ( ); }; const wrappedROIThresholdExport = () => { return ( ); }; const wrappedPanelTMTV = () => { return ( <> ); }; return [ { name: 'petSUV', iconName: 'tab-patient-info', iconLabel: 'Patient Info', label: 'Patient Info', component: wrappedPanelPetSuv, }, { name: 'tmtv', iconName: 'tab-segmentation', iconLabel: 'Segmentation', component: wrappedPanelTMTV, }, { name: 'tmtvBox', iconName: 'tab-segmentation', iconLabel: 'Segmentation', label: 'Segmentation Toolbox', component: wrappedROIThresholdToolbox, }, { name: 'tmtvExport', iconName: 'tab-segmentation', iconLabel: 'Segmentation', label: 'Segmentation Export', component: wrappedROIThresholdExport, }, ]; } export default getPanelModule;