Skip to content

Instantly share code, notes, and snippets.

@hieptl
Created December 3, 2021 04:56
Show Gist options
  • Select an option

  • Save hieptl/155121db3c43680ddb8cc7662ecb53ca to your computer and use it in GitHub Desktop.

Select an option

Save hieptl/155121db3c43680ddb8cc7662ecb53ca to your computer and use it in GitHub Desktop.
header.js - client - logout - Zoom Clone
const logout = async () => {
const isLogout = window.confirm('Do you want to log out ?');
if (isLogout) {
await cometChat.logout();
setUser(null);
localStorage.removeItem('auth');
history.push('/login');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment