Files
info-target-mobile/app/(auth)/confirm.tsx
Samandar Turgunboyev d747c72c8d complated
2026-02-17 10:46:57 +05:00

18 lines
416 B
TypeScript

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