(props: TableProps)
| 420 | }); |
| 421 | |
| 422 | const TableActions2 = (props: TableProps) => |
| 423 | ConfirmableActions({ |
| 424 | actions: [ |
| 425 | ['clone', 'Clone table', CloneTable], |
| 426 | ['delete', 'Delete table', DeleteTable], |
| 427 | ], |
| 428 | store: props.store, |
| 429 | tableId: props.tableId, |
| 430 | }); |
| 431 | |
| 432 | const AddCell = (props: OnDoneProp & RowProps) => { |
| 433 | const store = useStoreOrStoreById(props.store)(); |
nothing calls this directly
no test coverage detected
searching dependent graphs…