35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
/*
|
|
* File: index.ts
|
|
* Description: Shared components exports
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|
|
|
|
// ============================================================================
|
|
// SHARED COMPONENTS EXPORTS
|
|
// ============================================================================
|
|
|
|
// Custom Modal Component
|
|
export { CustomModal } from './CustomModal';
|
|
|
|
// Coming Soon Screen Component
|
|
export { ComingSoonScreen } from './ComingSoonScreen';
|
|
|
|
// DICOM Viewer Component
|
|
export { default as DicomViewer } from './DicomViewer';
|
|
|
|
// DICOM Viewer Modal Component
|
|
export { default as DicomViewerModal } from './DicomViewerModal';
|
|
|
|
// ============================================================================
|
|
// TYPE EXPORTS
|
|
// ============================================================================
|
|
|
|
// Export types for components
|
|
// export type { CustomModalProps } from './CustomModal';
|
|
|
|
/*
|
|
* End of File: index.ts
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|