({
store1,
store2,
outerStores,
innerStores,
}: {
readonly store1: Store;
readonly store2: Store;
readonly outerStores: {[storeId: string]: Store};
readonly innerStores: {[storeId: string]: Store};
})
| 389 | }); |
| 390 | |
| 391 | const ContextNested = ({ |
| 392 | store1, |
| 393 | store2, |
| 394 | outerStores, |
| 395 | innerStores, |
| 396 | }: { |
| 397 | readonly store1: Store; |
| 398 | readonly store2: Store; |
| 399 | readonly outerStores: {[storeId: string]: Store}; |
| 400 | readonly innerStores: {[storeId: string]: Store}; |
| 401 | }) => ( |
| 402 | <Provider storesById={outerStores}> |
| 403 | <Provider storesById={innerStores}> |
| 404 | <ContextNestedChild store1={store1} store2={store2} /> |
| 405 | </Provider> |
| 406 | </Provider> |
| 407 | ); |
| 408 | |
| 409 | const ContextNestedChild = ({ |
| 410 | store1, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…