Token in the client to react

hello, I currently use this code with localstorage

const isAuthenticated = ()=>{
const token = localStorage.getItem(‘token’)
let isValid = true
try{
isValid = decode(token);
}catch(e){
return false;
}
return isValid;
};

I would like to know how it would be the same but with cookies, thanks:)

Hey there!

Sorry for such delay in response! We’re doing our best in providing the best developer support experience out there, but sometimes the number of incoming questions is just too big for our bandwidth. Sorry for such inconvenience!

Do you still require further assistance from us?