({onDone, tableId, store}: OnDoneProp & TableProps)
| 125 | }; |
| 126 | |
| 127 | const DeleteTable = ({onDone, tableId, store}: OnDoneProp & TableProps) => ( |
| 128 | <Delete |
| 129 | onClick={useDelTableCallback(tableId, store, onDone)} |
| 130 | prompt="Delete table" |
| 131 | /> |
| 132 | ); |
| 133 | |
| 134 | export const TableActions1 = ({tableId, store}: TableProps) => ( |
| 135 | <ConfirmableActions |
nothing calls this directly
no test coverage detected
searching dependent graphs…