(props: ResultCellProps)
| 7 | import {useResultCell} from './primitives.ts'; |
| 8 | |
| 9 | export const ResultCellView = (props: ResultCellProps): JSXElement => { |
| 10 | const resultCell = useResultCell( |
| 11 | () => props.queryId, |
| 12 | () => props.rowId, |
| 13 | () => props.cellId, |
| 14 | () => props.queries, |
| 15 | ); |
| 16 | return ( |
| 17 | <> |
| 18 | {wrap( |
| 19 | EMPTY_STRING + (getValue(resultCell) ?? EMPTY_STRING), |
| 20 | undefined, |
| 21 | props.debugIds, |
| 22 | props.cellId, |
| 23 | )} |
| 24 | </> |
| 25 | ); |
| 26 | }; |
nothing calls this directly
no test coverage detected
searching dependent graphs…