I store user data after authorization (including the authorization token) in state redux. If the page is reloaded, redux state becomes empty.

The first thought is to store this data in localStorage, but I do not know how to do this with reference to Redux ideology. It turns out that I will take data not from Store Redux but directly from localStorage. Tell me how to do it correctly and who uses what decisions in their projects. thank

    0