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 */