You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rather than merging store with previous store I would like to have them separately. E.g.
constAuthStore=({ children })=><Providerstore={pageStore}>{children}</Provider>constPageStore=({ children })=><Providerstore={authStore}>{children}</Provider>render(<AuthStore><PageStore>
...
</PageStore></AuthStore>,document.body)
But currently when I try to use the stores in a component:
constA=connect('page','auth')(({ page, auth, children })=>(// page is defined but not auth)
it seems like Page provider overwrites the Auth provider.
The text was updated successfully, but these errors were encountered:
Rather than merging store with previous store I would like to have them separately. E.g.
But currently when I try to use the stores in a component:
it seems like Page provider overwrites the Auth provider.
The text was updated successfully, but these errors were encountered: