({storeId}: {readonly storeId?: string})
| 453 | ); |
| 454 | |
| 455 | const ContextTableChild = ({storeId}: {readonly storeId?: string}) => ( |
| 456 | <> |
| 457 | <span> |
| 458 | <TableView store={storeId} tableId="t1" /> |
| 459 | </span> |
| 460 | <span>{JSON.stringify(useTable('t1', storeId))}</span> |
| 461 | </> |
| 462 | ); |
| 463 | |
| 464 | const ContextRowChild = ({storeId}: {readonly storeId?: string}) => ( |
| 465 | <> |
nothing calls this directly
no test coverage detected
searching dependent graphs…