From 93a033a94fa4e0d65a2703f40ebc5ac1ff88f3a9 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Tue, 1 Apr 2014 13:36:56 -0700 Subject: [PATCH] Remove erroneous line about static methods. --- docs/tips/16-references-to-components.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/tips/16-references-to-components.md b/docs/tips/16-references-to-components.md index 00b615a91b..4e6115931d 100644 --- a/docs/tips/16-references-to-components.md +++ b/docs/tips/16-references-to-components.md @@ -16,8 +16,6 @@ var myComponent = React.renderComponent(, myContainer); Keep in mind, however, that the "constructor" of a component doesn't return a component instance! It's just a **descriptor**: a lightweight representation that tells React what the mounted component should look like. -Descriptors also contain any methods that you define in the [statics](http://facebook.github.io/react/docs/component-specs.html#statics) property of the component. - ```js /** @jsx React.DOM */