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

18 lines
449 B
TypeScript

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