20 lines
669 B
TypeScript
20 lines
669 B
TypeScript
/*
|
|
* File: index.ts
|
|
* Description: Components exports for AI Prediction module
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|
|
|
|
export { default as AIPredictionCard } from './AIPredictionCard';
|
|
export { default as SearchBar } from './SearchBar';
|
|
export { default as FilterTabs } from './FilterTabs';
|
|
export { default as LoadingState } from './LoadingState';
|
|
export { default as EmptyState } from './EmptyState';
|
|
export { default as StatsOverview } from './StatsOverview';
|
|
|
|
/*
|
|
* End of File: index.ts
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|