({store}: {readonly store: Store})
| 672 | }); |
| 673 | |
| 674 | const UndefinedContextChildren = ({store}: {readonly store: Store}) => { |
| 675 | useProvideStore('store1', store); |
| 676 | return ( |
| 677 | <> |
| 678 | {useStore()() ? 1 : 0} |
| 679 | {JSON.stringify(useStoreIds()())} |
| 680 | {JSON.stringify(useStores()())} |
| 681 | </> |
| 682 | ); |
| 683 | }; |
| 684 | |
| 685 | const DuplicateProvidedStore = ({store}: {readonly store: Store}) => { |
| 686 | useProvideStore('store1', store); |
nothing calls this directly
no test coverage detected
searching dependent graphs…