import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { XCircle } from "lucide-react"; 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 FormAddNewLivingSpace = ({ form, onSubmit, deleteAllSelections }: { form: any, onSubmit: (data: FormValues) => void, deleteAllSelections: () => void }) => { return <>
( Build ID )} /> ( Collection Token )} /> ( User Type ID )} /> ( Part ID )} /> ( Company ID )} /> ( Person ID )} />
{/* EXPIRY DATES */}
( Expiry Starts )} /> ( Expiry Ends )} />
} export { FormAddNewLivingSpace };