MCPcopy Create free account
hub / github.com/Thanas-R/Virdis / FieldEditDialogProps

Interface FieldEditDialogProps

src/components/FieldEditDialog.tsx:14–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12];
13
14interface FieldEditDialogProps {
15 field: Field;
16 onSave: (updated: Field) => void;
17 onDelete: (id: string) => void;
18 onClose: () => void;
19}
20
21const FieldEditDialog = ({ field, onSave, onDelete, onClose }: FieldEditDialogProps) => {
22 const [name, setName] = useState(field.name);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected