18 lines
416 B
TypeScript
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>
|
|
);
|
|
}
|