-
-
Save the-teacher/a0e98b3d28e1689f7e72 to your computer and use it in GitHub Desktop.
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