({storeId}: {readonly storeId?: string})
| 462 | ); |
| 463 | |
| 464 | const ContextRowChild = ({storeId}: {readonly storeId?: string}) => ( |
| 465 | <> |
| 466 | <span> |
| 467 | <RowView store={storeId} tableId="t1" rowId="r1" /> |
| 468 | </span> |
| 469 | <span>{JSON.stringify(useRow('t1', 'r1', storeId))}</span> |
| 470 | </> |
| 471 | ); |
| 472 | |
| 473 | const ContextCellChild = ({storeId}: {readonly storeId?: string}) => ( |
| 474 | <> |
nothing calls this directly
no test coverage detected
searching dependent graphs…