-
-
Save ar5had/5c13dad95bfe6f3b8ce41b846cd38f7d to your computer and use it in GitHub Desktop.
A simple component to make ReactJs ignore subtrees
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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