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

Interface ViewAllDialogProps

src/components/ViewAllDialog.tsx:7–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5import { toast } from 'sonner';
6
7interface ViewAllDialogProps {
8 title: string;
9 addresses:
10 | Array<{
11 id: number;
12 value: string;
13 userId: string;
14 }>
15 | undefined;
16 onDelete: (id: number) => void;
17}
18
19export const ViewAllDialog: React.FC<ViewAllDialogProps> = ({
20 title,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected