Skip to content

Instantly share code, notes, and snippets.

@x-or
x-or / ReactIgnore
Last active August 29, 2015 14:12 — forked from alexeisavca/ReactIgnore
var React = require('react/addons');
var ReactIgnore = {
displayName: 'ReactIgnore',
shouldComponentUpdate (){
return false;
},
render (){
return React.Children.only(this.props.children);
}