({storeId}: {readonly storeId?: string})
| 471 | ); |
| 472 | |
| 473 | const ContextCellChild = ({storeId}: {readonly storeId?: string}) => ( |
| 474 | <> |
| 475 | <span> |
| 476 | <CellView store={storeId} tableId="t1" rowId="r1" cellId="c1" /> |
| 477 | </span> |
| 478 | <span>{JSON.stringify(useCell('t1', 'r1', 'c1', storeId))}</span> |
| 479 | </> |
| 480 | ); |
| 481 | |
| 482 | const ContextStore = ({ |
| 483 | store, |
nothing calls this directly
no test coverage detected
searching dependent graphs…