Alex Krolick
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
6 additions and
4 deletions
-
content/docs/conditional-rendering.md
|
|
@ -92,10 +92,12 @@ class LoginControl extends React.Component { |
|
|
|
|
|
|
|
render() { |
|
|
|
const isLoggedIn = this.state.isLoggedIn; |
|
|
|
|
|
|
|
let button = isLoggedIn |
|
|
|
? <LogoutButton onClick={this.handleLogoutClick} /> |
|
|
|
: <LoginButton onClick={this.handleLoginClick} />; |
|
|
|
|
|
|
|
let button = isLoggedIn ? ( |
|
|
|
<LogoutButton onClick={this.handleLogoutClick} /> |
|
|
|
) : ( |
|
|
|
<LoginButton onClick={this.handleLoginClick} /> |
|
|
|
); |
|
|
|
|
|
|
|
return ( |
|
|
|
<div> |
|
|
|