in src/NavBar/index.tsx [19:27]
constructor(props: any) {
super(props);
this.state = {
isAuthenticated: false,
isLoadingAuthState: true,
user: null
};
Hub.listen(BROADCAST_AUTH_CHANNEL, this._handleAuthStateChange);
}