Skip to content

Instantly share code, notes, and snippets.

@reecer
Created February 10, 2015 03:13
Show Gist options
  • Save reecer/7b3e73b98d20c7dd3350 to your computer and use it in GitHub Desktop.
Save reecer/7b3e73b98d20c7dd3350 to your computer and use it in GitHub Desktop.
React.js getDOMNode 0.13 change
...
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