Use && for a More Concise Conditional

Tell us what’s happening:

Help

Your code so far


class MyComponent extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      display: true
    }
    this.toggleDisplay = this.toggleDisplay.bind(this);
  }
  toggleDisplay() {
    this.setState({
      display: !this.state.display
    });
  }
  render() {
    // change code below this line
    return ({(this.state.display) &&
       <div>
         <button onClick={this.toggleDisplay}>Toggle Display</button>
         <h1>Displayed!</h1>
       </div>
    }),
     <div>
      <button onClick={this.toggleDisplay}>Toggle Display</button>  
    </div>;
  }
};

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/front-end-libraries/react/use--for-a-more-concise-conditional/

What is your question? What have you tried?

return (
       <div>
       <button onClick={this.toggleDisplay}>
             Toggle Display 
       </button>
       {this.state.display && <h1>Displayed!</h1>}
  </div>
    );