Skip to content

Instantly share code, notes, and snippets.

@MarcBalaban
Forked from alexeisavca/ReactIgnore
Last active August 29, 2015 14:27
Show Gist options
  • Save MarcBalaban/286a0a9650635f98a4d2 to your computer and use it in GitHub Desktop.
Save MarcBalaban/286a0a9650635f98a4d2 to your computer and use it in GitHub Desktop.
A simple component to make ReactJs ignore subtrees
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