({
store1,
store2,
}: {
readonly store1: Store;
readonly store2: Store;
})
| 428 | }; |
| 429 | |
| 430 | const ContextNestedDifferent = ({ |
| 431 | store1, |
| 432 | store2, |
| 433 | }: { |
| 434 | readonly store1: Store; |
| 435 | readonly store2: Store; |
| 436 | }) => ( |
| 437 | <Provider storesById={{a: store1}}> |
| 438 | <Provider2 storesById={{b: asNoSchemasStore(store2)}}> |
| 439 | <ContextNestedDifferentChild store1={store1} store2={store2} /> |
| 440 | </Provider2> |
| 441 | </Provider> |
| 442 | ); |
| 443 | |
| 444 | const ContextNestedDifferentChild = ({ |
| 445 | store1, |
nothing calls this directly
no test coverage detected
searching dependent graphs…