({
onDone,
tableId,
rowId,
cellId,
store,
}: OnDoneProp & CellProps)
| 236 | // -- |
| 237 | |
| 238 | const CellDelete = ({ |
| 239 | onDone, |
| 240 | tableId, |
| 241 | rowId, |
| 242 | cellId, |
| 243 | store, |
| 244 | }: OnDoneProp & CellProps) => ( |
| 245 | <Delete |
| 246 | onClick={useDelCellCallback(tableId, rowId, cellId, true, store, onDone)} |
| 247 | prompt="Delete cell" |
| 248 | /> |
| 249 | ); |
| 250 | |
| 251 | export const CellActions = ({tableId, rowId, cellId, store}: CellProps) => ( |
| 252 | <ConfirmableActions |
nothing calls this directly
no test coverage detected
searching dependent graphs…