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

22 lines
560 B
TypeScript

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