auto-commit for 42b8cf5a-9372-449e-9bf7-40f762674796

This commit is contained in:
emergent-agent-e1
2025-11-08 21:37:45 +00:00
parent 64d30e2084
commit c09e690241
+6
View File
@@ -7,6 +7,9 @@ import LanguageScreen from './src/screens/LanguageScreen';
import HumanVerificationScreen from './src/screens/HumanVerificationScreen';
import AuthScreen from './src/screens/AuthScreen';
import HomeScreen from './src/screens/HomeScreen';
import NotificationsScreen from './src/screens/NotificationsScreen';
import SettingsScreen from './src/screens/SettingsScreen';
import QRScannerScreen from './src/screens/QRScannerScreen';
const Stack = createNativeStackNavigator();
@@ -20,6 +23,9 @@ export default function App() {
<Stack.Screen name="HumanVerification" component={HumanVerificationScreen} />
<Stack.Screen name="Auth" component={AuthScreen} />
<Stack.Screen name="Home" component={HomeScreen} />
<Stack.Screen name="Notifications" component={NotificationsScreen} />
<Stack.Screen name="Settings" component={SettingsScreen} />
<Stack.Screen name="QRScanner" component={QRScannerScreen} />
</Stack.Navigator>
</NavigationContainer>
</AuthProvider>