927 Views
"How does Auth work with Redux and JWT ?" The general idea is that you will save the current user's information to the Redux store for easy access across your app. You will also save the JWT (JSON Web Token) associated with the user to localStorage so that their login can persist between sessions unless they explicitly logout.
0 comments