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
@SquallLeoVIII, Can you please paste your store,reducer and component setup?
How did you connected your store to component? using react-redux's Provider and connect?
i seem to be having problems using store
i have exported my store
const store = createStore(reducer);
export default store;
and gave it this initial state(reducer has "state = initialState")
const initialState = Immutable.fromJS({
user: 'me',
});
now in my component in function stateFromStore i seem to be getting an uninitialized store
with user = undefined
not sure why.
The text was updated successfully, but these errors were encountered: