I want to do something like the following in a React component:
<div>
{this.props.isOpen && this.state.isReady && <div> Hello! </div>}
</div>
Is it possible to use multiple booleans for conditionally rendering components in React? Could this ever possibly render a boolean to the user?
<div />will appear out of nowhere