({
store1,
store2,
outerStores,
innerStores,
}: {
readonly store1: Store;
readonly store2: Store;
readonly outerStores: {[storeId: string]: Store};
readonly innerStores: {[storeId: string]: Store};
})
| 668 | }) => <>{useSynchronizer(synchronizerId)?.getStatus()}</>; |
| 669 | |
| 670 | const ContextNested = ({ |
| 671 | store1, |
| 672 | store2, |
| 673 | outerStores, |
| 674 | innerStores, |
| 675 | }: { |
| 676 | readonly store1: Store; |
| 677 | readonly store2: Store; |
| 678 | readonly outerStores: {[storeId: string]: Store}; |
| 679 | readonly innerStores: {[storeId: string]: Store}; |
| 680 | }) => ( |
| 681 | <Provider storesById={outerStores}> |
| 682 | <Provider storesById={innerStores}> |
| 683 | <ContextNestedChild store1={store1} store2={store2} /> |
| 684 | </Provider> |
| 685 | </Provider> |
| 686 | ); |
| 687 | |
| 688 | const ContextNestedChild = ({ |
| 689 | store1, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…