From 0048d5ab29006bd9564c5a9818475e53b197318b Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Mon, 13 Apr 2015 18:52:58 +0800 Subject: [PATCH] React: document React.findDOMNode (#8) --- react.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/react.md b/react.md index 2a1b6b543..5ef9e43ad 100644 --- a/react.md +++ b/react.md @@ -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() ```