({
store1,
store2,
}: {
readonly store1: Store;
readonly store2: Store;
})
| 702 | ); |
| 703 | |
| 704 | const ContextNestedDifferent = ({ |
| 705 | store1, |
| 706 | store2, |
| 707 | }: { |
| 708 | readonly store1: Store; |
| 709 | readonly store2: Store; |
| 710 | }) => ( |
| 711 | <Provider storesById={{a: store1}}> |
| 712 | <Provider2 storesById={{b: asNoSchemasStore(store2)}}> |
| 713 | <ContextNestedDifferentChild store1={store1} store2={store2} /> |
| 714 | </Provider2> |
| 715 | </Provider> |
| 716 | ); |
| 717 | |
| 718 | const ContextNestedDifferentChild = ({ |
| 719 | store1, |
nothing calls this directly
no test coverage detected
searching dependent graphs…