({ tableId, rowId, cellId, store, debugIds })
| 1373 | ) |
| 1374 | }); |
| 1375 | var CellView = ({ tableId, rowId, cellId, store, debugIds }) => /* @__PURE__ */ jsx(Wrap, { |
| 1376 | debugIds, |
| 1377 | id: cellId, |
| 1378 | children: EMPTY_STRING + (useCell(tableId, rowId, cellId, store) ?? EMPTY_STRING) |
| 1379 | }); |
| 1380 | var useCustomOrDefaultCellIds = (customCellIds, tableId, rowId, store) => { |
| 1381 | const defaultCellIds = useCellIds(tableId, rowId, store); |
| 1382 | return customCellIds ?? defaultCellIds; |
nothing calls this directly
no test coverage detected
searching dependent graphs…