Skip to content

Instantly share code, notes, and snippets.

@Kornil
Last active February 16, 2019 13:57
Show Gist options
  • Save Kornil/e5c88fcf14f1512a842186223ed71678 to your computer and use it in GitHub Desktop.
Save Kornil/e5c88fcf14f1512a842186223ed71678 to your computer and use it in GitHub Desktop.
const Hello = () => {
const [isOpen, toggleIsOpen] = React.useState(false);
return (
<div>
<button onClick={(prevValue) => toggleIsOpen(!prevValue)}>click me</button>
{isOpen ? <p>I'm open!</p> : <p>I'm closed!</p>}
</div>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment