update register page ui and api
This commit is contained in:
15
app/(auth)/register-form.tsx
Normal file
15
app/(auth)/register-form.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import RegisterFormScreen from '@/screens/auth/register/RegisterForm';
|
||||
import React from 'react';
|
||||
import { StyleSheet, View } from 'react-native';
|
||||
|
||||
export default function Index() {
|
||||
return (
|
||||
<View style={styles.safeArea}>
|
||||
<RegisterFormScreen />
|
||||
</View>
|
||||
);
|
||||
}
|
||||
|
||||
const styles = StyleSheet.create({
|
||||
safeArea: { flex: 1, backgroundColor: '#0f172a' },
|
||||
});
|
||||
Reference in New Issue
Block a user