18 lines
551 B
TypeScript
18 lines
551 B
TypeScript
/*
|
|
* File: index.ts
|
|
* Description: Export all screen components from Settings module
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|
|
|
|
export { SettingsScreen } from './SettingsScreen';
|
|
export { AppInfoScreen } from './AppInfoScreen';
|
|
export { EditProfileScreen } from './EditProfileScreen';
|
|
export { ChangePasswordScreen } from './ChangePasswordScreen';
|
|
|
|
/*
|
|
* End of File: index.ts
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|