Hi Christopher, I am learning react universal rendering with redux. I am following github.com/erikras/react-redux-universal-hot-exam…. The differences in my architecture are, I am not using Ducks as in the example. I am also using isomorphic-fetch instead of superagent. And I am not using any promise middleware since fetch itself return promise to async connect.
But I am facing a strange issue. I have a popup for sign in. And sign in handled on client side completely. After signing in I am storing tokens and sessions in redux state. But when I refresh the browser, all the values in redux state become null. All I want is to retain the sign in data on page reload (server rendering).
Do not know if I could explain you properly. But I am feeling like there must be a missing link in the entire redux flow.
Thanks in advance.