(props: OnDoneProp & RowProps)
| 466 | }; |
| 467 | |
| 468 | const DeleteRow = (props: OnDoneProp & RowProps) => |
| 469 | Delete({ |
| 470 | onClick: useDelRowCallback( |
| 471 | props.tableId, |
| 472 | props.rowId, |
| 473 | props.store, |
| 474 | props.onDone, |
| 475 | ), |
| 476 | prompt: 'Delete row', |
| 477 | }); |
| 478 | |
| 479 | const RowActions = (props: RowProps) => |
| 480 | ConfirmableActions({ |
nothing calls this directly
no test coverage detected
searching dependent graphs…