({tableId, store}: TableProps)
| 139 | /> |
| 140 | ); |
| 141 | export const TableActions2 = ({tableId, store}: TableProps) => ( |
| 142 | <ConfirmableActions |
| 143 | actions={[ |
| 144 | ['clone', 'Clone table', CloneTable], |
| 145 | ['delete', 'Delete table', DeleteTable], |
| 146 | ]} |
| 147 | store={store} |
| 148 | tableId={tableId} |
| 149 | /> |
| 150 | ); |
| 151 | |
| 152 | const useHasRowCallback = ( |
| 153 | storeOrStoreId: StoreOrStoreId | undefined, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…