Files
info-tager-mobile/app/(auth)/confirm.tsx
Samandar Turgunboyev 124798419b fitst commit
2026-01-28 18:26:50 +05:00

19 lines
489 B
TypeScript

import ConfirmScreen from '@/screens/auth/confirm/ConfirmScreen';
import { ScrollView } from 'react-native';
import { SafeAreaView } from 'react-native-safe-area-context';
export default function Confirm() {
return (
<SafeAreaView
style={{
flex: 1,
backgroundColor: '#0f172a',
}}
>
<ScrollView contentContainerStyle={{ flexGrow: 1 }} keyboardShouldPersistTaps="handled">
<ConfirmScreen />
</ScrollView>
</SafeAreaView>
);
}