19 lines
489 B
TypeScript
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>
|
|
);
|
|
}
|