Remove erroneous line about static methods.

This commit is contained in:
Kunal Mehta
2014-04-01 13:36:56 -07:00
parent d236a0538d
commit 93a033a94f
-2
View File
@@ -16,8 +16,6 @@ var myComponent = React.renderComponent(<MyComponent />, 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 */