import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { Form, FormControl, FormField, FormItem, FormLabel, FormMessage } from "@/components/ui/form"; import { DateTimePicker } from "@/components/ui/date-time-picker"; import { FormValues } from "./schema"; import { Label } from "@/components/ui/label"; const FormUpdateNewLivingSpace = ({ form, onSubmit }: { form: any, onSubmit: (data: FormValues) => void }) => { return <>
{/* ( Build ID )} /> */} {/* ( Collection Token )} /> */} ( User Type ID )} /> ( Part ID )} /> ( Company ID )} /> ( Person ID )} />
{/* EXPIRY DATES */}
( Expiry Starts )} /> ( Expiry Ends )} />
} export { FormUpdateNewLivingSpace };