| 36 | export type FormValues = z.infer<typeof formSchema>; |
| 37 | |
| 38 | interface EventFormProps { |
| 39 | form: UseFormReturn<FormValues>; |
| 40 | onSubmit: (values: FormValues) => void; |
| 41 | onDelete?: () => void; |
| 42 | isEditMode: boolean; |
| 43 | } |
| 44 | |
| 45 | const EventForm: React.FC<EventFormProps> = ({ |
| 46 | form, |
nothing calls this directly
no outgoing calls
no test coverage detected