| 5 | import { ViewAllDialog } from './ViewAllDialog'; |
| 6 | |
| 7 | interface 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 | |
| 23 | export const PayoutMethodCard: React.FC<PayoutMethodCardProps> = ({ |
| 24 | title, |
nothing calls this directly
no outgoing calls
no test coverage detected