Initial commit from prod-batam
This commit is contained in:
21
extensions/default/src/getViewportModule.tsx
Normal file
21
extensions/default/src/getViewportModule.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
import { CommandsManager, ExtensionManager } from '@ohif/core';
|
||||
import LineChartViewport from './Components/LineChartViewport/index';
|
||||
|
||||
const getViewportModule = ({
|
||||
servicesManager,
|
||||
commandsManager,
|
||||
extensionManager,
|
||||
}: {
|
||||
servicesManager: AppTypes.ServicesManager;
|
||||
commandsManager: CommandsManager;
|
||||
extensionManager: ExtensionManager;
|
||||
}) => {
|
||||
return [
|
||||
{
|
||||
name: 'chartViewport',
|
||||
component: LineChartViewport,
|
||||
},
|
||||
];
|
||||
};
|
||||
|
||||
export { getViewportModule as default };
|
||||
Reference in New Issue
Block a user