feat: add postinstall script for patch-package fix: update react-native-biometrics to support device credentials refactor: remove FaceAuth, Home, LockScreen, Managelock, and related auth files chore: update TypeScript configuration for React Native
11 lines
265 B
TypeScript
11 lines
265 B
TypeScript
import React from 'react';
|
|
import { View, Text } from 'react-native';
|
|
|
|
export default function HomeScreen() {
|
|
return (
|
|
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
|
|
<Text>Welcome! App Unlocked 🔓</Text>
|
|
</View>
|
|
);
|
|
}
|