15 lines
442 B
TypeScript
15 lines
442 B
TypeScript
/*
|
|
* File: index.ts
|
|
* Description: Barrel export for Auth screens
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|
|
|
|
export { default as LoginScreen } from './LoginScreen';
|
|
export { default as SetupBiometricScreen } from './SetupBiometricScreen';
|
|
|
|
/*
|
|
* End of File: index.ts
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|