Skip to content

Instantly share code, notes, and snippets.

@abiodun0
Created April 22, 2017 04:10
Show Gist options
  • Save abiodun0/566cb11be4490464ea3b40c0614e9982 to your computer and use it in GitHub Desktop.
Save abiodun0/566cb11be4490464ea3b40c0614e9982 to your computer and use it in GitHub Desktop.
Nifty Component Conditionals
const when = (val, whenTrue) => { if (val) { return whenTrue() } else { return null } }
{when(thingIsTrue, () => <Component />)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment