React: document React.findDOMNode (#8)

This commit is contained in:
Rico Sta. Cruz 2015-04-13 18:52:58 +08:00
parent 2f8f3efa21
commit 0048d5ab29
1 changed files with 3 additions and 1 deletions

View File

@ -44,7 +44,9 @@ this.replaceProps({ ... });
### [API](http://facebook.github.io/react/docs/component-api.html)
```js
c.getDOMNode()
c.getDOMNode() // deprecated 0.13
React.findDOMNode(c) // 0.13+
c.forceUpdate()
c.isMounted()
```