/* eslint-disable @typescript-eslint/no-unused-vars */ import { AvatarCustom, ButtonCustom, Spacing, StackCustom, SelectCustom, TextInputCustom, ViewWrapper, } from "@/components"; import InformationBox from "@/components/Box/InformationBox"; import ButtonUpload from "@/components/Button/ButtonUpload"; import LandscapeFrameUploaded from "@/components/Image/LandscapeFrameUploaded"; import { View } from "react-native"; import { useState } from "react"; import { router } from "expo-router"; export default function CreateProfile() { const [data, setData] = useState({ name: "", email: "", address: "", gender: "", }); const handlerSave = () => { console.log("data create profile >>", data); // router.back(); }; return ( Simpan } > console.log("pressed")} /> console.log("pressed")} /> setData({ ...data, name: text })} /> setData({ ...data, email: text })} /> setData({ ...data, address: text })} /> setData({ ...(data as any), gender: value })} /> ); }