25 lines
539 B
TypeScript
25 lines
539 B
TypeScript
/*
|
|
* File: index.ts
|
|
* Description: Barrel export for PatientCare module
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|
|
|
|
// Screens
|
|
export * from './screens';
|
|
|
|
// Components
|
|
export * from './components';
|
|
|
|
// Services
|
|
export * from './services';
|
|
|
|
// Redux
|
|
export * from './redux/patientCareSlice';
|
|
export * from './redux/patientCareSelectors';
|
|
|
|
/*
|
|
* End of File: index.ts
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/ |