(props: RowProps)
| 477 | }); |
| 478 | |
| 479 | const RowActions = (props: RowProps) => |
| 480 | ConfirmableActions({ |
| 481 | actions: [ |
| 482 | ['add', 'Add cell', AddCell], |
| 483 | ['clone', 'Clone row', CloneRow], |
| 484 | ['delete', 'Delete row', DeleteRow], |
| 485 | ], |
| 486 | store: props.store, |
| 487 | tableId: props.tableId, |
| 488 | rowId: props.rowId, |
| 489 | }); |
| 490 | |
| 491 | const CellDelete = (props: OnDoneProp & CellProps) => |
| 492 | Delete({ |
nothing calls this directly
no test coverage detected
searching dependent graphs…