18 lines
580 B
TypeScript
18 lines
580 B
TypeScript
/*
|
|
* File: index.ts
|
|
* Description: Barrel export for CaseReview redux
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|
|
|
|
export { default as caseReviewReducer } from './caseReviewSlice';
|
|
export { default as dicomReducer } from './dicomSlice';
|
|
export { default as aiAnalysisReducer } from './aiAnalysisSlice';
|
|
export * from './caseReviewActions';
|
|
export * from './caseReviewSelectors';
|
|
|
|
/*
|
|
* End of File: index.ts
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|