Skip to content

Instantly share code, notes, and snippets.

@himanshu-dixit
Created December 15, 2018 13:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save himanshu-dixit/eea2b3d4b1d4043ee27e5bb5dea0f1eb to your computer and use it in GitHub Desktop.
Save himanshu-dixit/eea2b3d4b1d4043ee27e5bb5dea0f1eb to your computer and use it in GitHub Desktop.
....
class Dashboard extends Component {
....
logout() {
let auth = new Auth();
auth.logout();
}
render() {
return (
....
<div className="button" onClick={() => this.logout()}>Logout</div>
....
);
}
}
export default Dashboard;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment