问题 How to read the cookie on the client side (react) that was set via Passport on the Server side (node-express)? The cookie is setup correctly and can be serialized and deserialized on the server side as shown in the below code: passport.serializeUser(function(user, done) { done(null, user.id); }); passport.deserializeUser(function(id, done) { User.findById(id, function(err, user) { done(err, user); }); }); How can I read this cookie on the client side (React)? I don't have much experience with