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

Interface PayoutMethodCardProps

src/components/PaymentMethodCard.tsx:7–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5import { ViewAllDialog } from './ViewAllDialog';
6
7interface PayoutMethodCardProps {
8 title: string;
9 description: string;
10 imageSrc: string;
11 addresses:
12 | Array<{
13 id: number;
14 value: string;
15 userId: string;
16 }>
17 | undefined;
18 onAdd: (method: string) => void;
19 id: string;
20 onDelete: (id: number) => void;
21}
22
23export const PayoutMethodCard: React.FC<PayoutMethodCardProps> = ({
24 title,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected