({storeId}: {readonly storeId?: string})
| 444 | ); |
| 445 | |
| 446 | const ContextTablesChild = ({storeId}: {readonly storeId?: string}) => ( |
| 447 | <> |
| 448 | <span> |
| 449 | <TablesView store={storeId} /> |
| 450 | </span> |
| 451 | <span>{JSON.stringify(useTables(storeId))}</span> |
| 452 | </> |
| 453 | ); |
| 454 | |
| 455 | const ContextTableChild = ({storeId}: {readonly storeId?: string}) => ( |
| 456 | <> |
nothing calls this directly
no test coverage detected
searching dependent graphs…