Skip to content

Instantly share code, notes, and snippets.

@hieptl
Created November 13, 2021 16:41
Show Gist options
  • Save hieptl/a69fb04137a31b03f39e44f1921fea8d to your computer and use it in GitHub Desktop.
Save hieptl/a69fb04137a31b03f39e44f1921fea8d to your computer and use it in GitHub Desktop.
Login.js - Login CometChat - Discord Clone
...
const loginCometChat = (user) => {
const authKey = `${process.env.REACT_APP_COMETCHAT_AUTH_KEY}`;
cometChat.login(user.id, authKey).then(
User => {
localStorage.setItem('auth', JSON.stringify(user));
setUser(user);
setIsLoading(false);
history.push('/');
},
error => {
}
);
};
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment