Created
February 10, 2015 03:13
-
-
Save reecer/7b3e73b98d20c7dd3350 to your computer and use it in GitHub Desktop.
React.js getDOMNode 0.13 change
This file contains 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
... | |
componentDidMount(){ | |
// this.getDOMNode().className += '...'; | |
React.findDOMNode(this).className += '...'; | |
} | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment