(props: OnDoneProp & CellProps)
| 489 | }); |
| 490 | |
| 491 | const CellDelete = (props: OnDoneProp & CellProps) => |
| 492 | Delete({ |
| 493 | onClick: useDelCellCallback( |
| 494 | props.tableId, |
| 495 | props.rowId, |
| 496 | props.cellId, |
| 497 | true, |
| 498 | props.store, |
| 499 | props.onDone, |
| 500 | ), |
| 501 | prompt: 'Delete cell', |
| 502 | }); |
| 503 | |
| 504 | const CellActions = (props: CellProps) => |
| 505 | ConfirmableActions({ |
nothing calls this directly
no test coverage detected
searching dependent graphs…