Skip to content

Instantly share code, notes, and snippets.

@ryanflorence
Created October 28, 2014 17:17
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ryanflorence/e45db2785fdb65486c17 to your computer and use it in GitHub Desktop.
Save ryanflorence/e45db2785fdb65486c17 to your computer and use it in GitHub Desktop.
var If = React.createClass({
render: function() {
return this.props.value && this.props.children;
}
});
// usage
<If value={this.state.whatever}>
Stuff
</If>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment