update register page ui and api

This commit is contained in:
Samandar Turgunboyev
2026-02-24 11:28:06 +05:00
parent 0c9e0811ea
commit 8edd45d1ad
18 changed files with 14795 additions and 313 deletions

View 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' },
});