Skip to content

Instantly share code, notes, and snippets.

@x-or
Forked from alexeisavca/ReactIgnore
Last active August 29, 2015 14:12
Show Gist options
  • Save x-or/2ea87b90c77a210842c8 to your computer and use it in GitHub Desktop.
Save x-or/2ea87b90c77a210842c8 to your computer and use it in GitHub Desktop.
var React = require('react/addons');
var ReactIgnore = {
displayName: 'ReactIgnore',
shouldComponentUpdate (){
return false;
},
render (){
return React.Children.only(this.props.children);
}
};
module.exports = {
Class: ReactIgnore,
Component: React.createClass(ReactIgnore)
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment