16 lines
453 B
TypeScript
16 lines
453 B
TypeScript
/*
|
|
* File: index.ts
|
|
* Description: Barrel export for Dashboard redux
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|
|
|
|
export { default as dashboardReducer } from './dashboardSlice';
|
|
export * from './dashboardActions';
|
|
export * from './dashboardSelectors';
|
|
|
|
/*
|
|
* End of File: index.ts
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|