18 lines
585 B
TypeScript
18 lines
585 B
TypeScript
/*
|
|
* File: index.ts
|
|
* Description: Barrel export for Dashboard components
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|
|
|
|
export { default as CaseQueue } from './CaseQueue';
|
|
export { default as CaseCard } from './CaseCard';
|
|
export { PriorityIndicator } from './PriorityIndicator';
|
|
export { default as StatsPanel } from './StatsPanel';
|
|
export { default as FilterBar } from './FilterBar';
|
|
|
|
/*
|
|
* End of File: index.ts
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|