Skip to content

Instantly share code, notes, and snippets.

@nicholasess
Created May 3, 2018 22:14
Show Gist options
  • Save nicholasess/4b3854db1b3646d7d07ab7a171ebd77b to your computer and use it in GitHub Desktop.
Save nicholasess/4b3854db1b3646d7d07ab7a171ebd77b to your computer and use it in GitHub Desktop.
render() {
const { isLoading, token } = this.state;
if (!isLoading) {
if (!token) {
return (
<Login screenProps={{ logIn: this.logIn }} />
);
} else {
return (
<Root
screenProps={{
logOut: this.logOut,
}}
/>
);
}
} else {
return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment