in src/App.tsx [40:49]
constructor(props: any) {
super(props);
Hub.listen("auth", this._handleAuthStateChange);
//Extract confirmationCode value (or undefined)
var captured = /autologin=([^&]+)/.exec(window.location.href);
var autologin = captured ? captured[1] : false;
this.state = { autologin: autologin };
}