Skip to content

Instantly share code, notes, and snippets.

@dangreenisrael
Last active June 18, 2018 15:55
Show Gist options
  • Save dangreenisrael/b309db3b622138fb8ff9245342849723 to your computer and use it in GitHub Desktop.
Save dangreenisrael/b309db3b622138fb8ff9245342849723 to your computer and use it in GitHub Desktop.
Conditional Render
const A = () => <h1> Foo </h1>
const B = () => <h1> Bar </h1>
const AorB = props => props.isBusinessOwner ? <A> : <B>;
const Parent = props => (
<div>
Haaaaay!!!
<AorB isBusinessOwner={props.isBusinessOwner}/>
</div>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment