MCPcopy Create free account
hub / github.com/code100x/cms / EventFormProps

Interface EventFormProps

src/components/big-calendar/event-form.tsx:38–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected