({onDone, tableId, rowId, store}: OnDoneProp & RowProps)
| 214 | }; |
| 215 | |
| 216 | const DeleteRow = ({onDone, tableId, rowId, store}: OnDoneProp & RowProps) => ( |
| 217 | <Delete |
| 218 | onClick={useDelRowCallback(tableId, rowId, store, onDone)} |
| 219 | prompt="Delete row" |
| 220 | /> |
| 221 | ); |
| 222 | |
| 223 | export const RowActions = ({tableId, rowId, store}: RowProps) => ( |
| 224 | <ConfirmableActions |
nothing calls this directly
no test coverage detected
searching dependent graphs…