(props: CellProps)
| 502 | }); |
| 503 | |
| 504 | const CellActions = (props: CellProps) => |
| 505 | ConfirmableActions({ |
| 506 | actions: [['delete', 'Delete cell', CellDelete]], |
| 507 | store: props.store, |
| 508 | tableId: props.tableId, |
| 509 | rowId: props.rowId, |
| 510 | cellId: props.cellId, |
| 511 | }); |
| 512 | |
| 513 | const AddValue = (props: OnDoneProp & ValuesProps) => { |
| 514 | const has = useHasValueCallback(props.store); |
nothing calls this directly
no test coverage detected
searching dependent graphs…