Skip to content

Instantly share code, notes, and snippets.

@luan0ap
Forked from alexnm/conditional.jsx
Created February 20, 2018 17:47
Show Gist options
  • Save luan0ap/cd3f888ddf9dc628c2094a1cb3d5c1a0 to your computer and use it in GitHub Desktop.
Save luan0ap/cd3f888ddf9dc628c2094a1cb3d5c1a0 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