(tableId: Id | undefined, store: Store | undefined)
| 25 | } from './common/index.tsx'; |
| 26 | |
| 27 | const useDottedCellIds = (tableId: Id | undefined, store: Store | undefined) => |
| 28 | arrayMap( |
| 29 | useTableCellIds(tableId as Id, store), |
| 30 | (cellId) => tableId + DOT + cellId, |
| 31 | ); |
| 32 | |
| 33 | export const RelationshipInHtmlRow = ({ |
| 34 | localRowId, |
no test coverage detected
searching dependent graphs…