(props: TablesProps)
| 356 | }); |
| 357 | |
| 358 | const TablesActions = (props: TablesProps) => |
| 359 | Actions({ |
| 360 | left: ConfirmableActions({ |
| 361 | actions: [['add', 'Add table', AddTable]], |
| 362 | store: props.store, |
| 363 | }), |
| 364 | right: useHasTables(props.store)() |
| 365 | ? ConfirmableActions({ |
| 366 | actions: [['delete', 'Delete all tables', DeleteTables]], |
| 367 | store: props.store, |
| 368 | }) |
| 369 | : EMPTY_STRING, |
| 370 | }); |
| 371 | |
| 372 | const AddRow = (props: OnDoneProp & TableProps) => { |
| 373 | const has = useHasRowCallback(props.store, props.tableId); |
nothing calls this directly
no test coverage detected
searching dependent graphs…