({
store1,
store2,
}: {
readonly store1: Store;
readonly store2: Store;
})
| 686 | ); |
| 687 | |
| 688 | const ContextNestedChild = ({ |
| 689 | store1, |
| 690 | store2, |
| 691 | }: { |
| 692 | readonly store1: Store; |
| 693 | readonly store2: Store; |
| 694 | }) => ( |
| 695 | <> |
| 696 | {JSON.stringify(useStoreIds())} |
| 697 | {useStore('a') == store1 ? 1 : 0} |
| 698 | {useStore('a') == store2 ? 1 : 0} |
| 699 | {useStore('b') == store1 ? 1 : 0} |
| 700 | {useStore('b') == store2 ? 1 : 0} |
| 701 | </> |
| 702 | ); |
| 703 | |
| 704 | const ContextNestedDifferent = ({ |
| 705 | store1, |
nothing calls this directly
no test coverage detected
searching dependent graphs…