import { Link } from "expo-router"; import { useState } from "react"; import { Image, ScrollView, Text, View } from "react-native"; import { CustomButton } from "@/components/custom-button"; import { InputField } from "@/components/input-field"; import { OAuth } from "@/components/oauth"; import { icons, images } from "@/constants"; const SignUp = () => { const [form, setForm] = useState({ name: "", email: "", password: "", }); const onSignUpPress = async () => {}; return ( Car Create Your Account setForm((prevForm) => ({ ...prevForm, name: value, })) } /> setForm((prevForm) => ({ ...prevForm, email: value, })) } /> setForm((prevForm) => ({ ...prevForm, password: value, })) } /> Already have an account? Login {/* Verification Modal */} ); }; export default SignUp;