17 lines
505 B
TypeScript
17 lines
505 B
TypeScript
/*
|
|
* File: index.ts
|
|
* Description: Barrel export for Profile redux
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|
|
|
|
export { default as profileReducer } from './profileSlice';
|
|
export { default as settingsReducer } from './settingsSlice';
|
|
export * from './profileActions';
|
|
export * from './profileSelectors';
|
|
|
|
/*
|
|
* End of File: index.ts
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|