add tip for the important jsx convention

I missed the convention and wast hours to figure out what's wrong. 
Add this tip in the document for who would miss the importance comment.
This commit is contained in:
XuefengWu
2014-09-22 20:10:34 +08:00
parent 9d7e3a7471
commit 0ae09f4c70
+2
View File
@@ -57,6 +57,8 @@ React.renderComponent(
document.getElementById('example')
);
```
> ```/** @jsx React.DOM */``` is must, or jsx would not convert.
Then reference it from `helloworld.html`:
```html{10}