16 lines
428 B
TypeScript
16 lines
428 B
TypeScript
/*
|
|
* File: index.ts
|
|
* Description: Barrel export for Auth redux
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|
|
|
|
export { default as authReducer } from './authSlice';
|
|
export * from './authActions';
|
|
export * from './authSelectors';
|
|
|
|
/*
|
|
* End of File: index.ts
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|