({onDone, store}: OnDoneProp & TablesProps)
| 56 | }; |
| 57 | |
| 58 | const DeleteTables = ({onDone, store}: OnDoneProp & TablesProps) => ( |
| 59 | <Delete |
| 60 | onClick={useDelTablesCallback(store, onDone)} |
| 61 | prompt="Delete all tables" |
| 62 | /> |
| 63 | ); |
| 64 | |
| 65 | export const TablesActions = ({store}: TablesProps) => ( |
| 66 | <Actions |
nothing calls this directly
no test coverage detected
searching dependent graphs…