Add missing verb

This adds a missing verb in JSX-in-depth doc.
This commit is contained in:
Tim Schaub
2014-12-08 15:08:57 -08:00
parent ba95ce7b6f
commit 877d00d9ba

View File

@@ -29,7 +29,7 @@ var myDivElement = <div className="foo" />;
React.render(myDivElement, document.body);
```
To render a React Component, just a local variable that starts with an upper-case letter:
To render a React Component, just create a local variable that starts with an upper-case letter:
```javascript
var MyComponent = React.createClass({/*...*/});