Skip to content

Instantly share code, notes, and snippets.

@asaschachar
Last active June 5, 2019 23:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save asaschachar/1ede85162254858a6ea1ab93cb726dd9 to your computer and use it in GitHub Desktop.
Save asaschachar/1ede85162254858a6ea1ab93cb726dd9 to your computer and use it in GitHub Desktop.
react-feature-flags-2
<OptimizelyFeature feature="hello_world">
{(isEnabled) => (
isEnabled
? (<p> You got the <strong>hello_world</strong> feature! </p>)
: (<p> You did not get the feature </p>)
)}
</OptimizelyFeature>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment