Skip to content

Instantly share code, notes, and snippets.

@alexnm
Created January 28, 2018 14:20
Show Gist options
  • Save alexnm/a60dd7e8e886684933d8e496a20126c0 to your computer and use it in GitHub Desktop.
Save alexnm/a60dd7e8e886684933d8e496a20126c0 to your computer and use it in GitHub Desktop.
const condition = true;
const App = () => (
<div>
<h1>This is always visible</h1>
{
condition && (
<div>
<h2>Show me</h2>
<p>Description</p>
</div>
)
}
</div>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment