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

Interface FieldListPanelProps

src/components/FieldListPanel.tsx:6–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4import FieldCard from "./FieldCard";
5
6interface FieldListPanelProps {
7 fields: Field[];
8 onRemoveField: (id: string) => void;
9 onFieldClick?: (field: Field) => void;
10}
11
12const FieldListPanel = ({ fields, onRemoveField, onFieldClick }: FieldListPanelProps) => {
13 const [search, setSearch] = useState("");

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected