23 lines
633 B
TypeScript
23 lines
633 B
TypeScript
import RegisterScreen from '@/screens/auth/register/RegisterScreen';
|
|
import React from 'react';
|
|
import { ScrollView, StyleSheet } from 'react-native';
|
|
import { SafeAreaView } from 'react-native-safe-area-context';
|
|
|
|
export default function Index() {
|
|
return (
|
|
<SafeAreaView style={styles.safeArea}>
|
|
<ScrollView
|
|
contentContainerStyle={{ flexGrow: 1 }}
|
|
keyboardShouldPersistTaps="handled"
|
|
showsVerticalScrollIndicator={false}
|
|
>
|
|
<RegisterScreen />
|
|
</ScrollView>
|
|
</SafeAreaView>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
safeArea: { flex: 1, backgroundColor: '#0f172a' },
|
|
});
|