Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save claudiainbytes/08ec5fb1d0dc3d6feff66b69cc00be83 to your computer and use it in GitHub Desktop.
Save claudiainbytes/08ec5fb1d0dc3d6feff66b69cc00be83 to your computer and use it in GitHub Desktop.
React Short-circuit Evaluation Syntax
{this.state.screen === 'list' && (
<ListContacts
contacts={this.state.contacts}
onDeleteContact={this.removeContact}
/>
)};
{this.state.screen === 'create' && (
<CreateContact />
)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment