({
tableId,
rowId,
cellId,
store,
debugIds,
}: CellProps)
| 7 | import {useCell} from './hooks.ts'; |
| 8 | |
| 9 | export const CellView: typeof CellViewDecl = ({ |
| 10 | tableId, |
| 11 | rowId, |
| 12 | cellId, |
| 13 | store, |
| 14 | debugIds, |
| 15 | }: CellProps): any => ( |
| 16 | <Wrap debugIds={debugIds} id={cellId}> |
| 17 | {EMPTY_STRING + (useCell(tableId, rowId, cellId, store) ?? EMPTY_STRING)} |
| 18 | </Wrap> |
| 19 | ); |
nothing calls this directly
no test coverage detected
searching dependent graphs…