Update 02.1-jsx-in-depth.md

Update 02.1-jsx-in-depth.md
This commit is contained in:
Nick Balestra
2015-10-28 20:14:02 -07:00
parent d29cda53cd
commit 4a7ff18781

View File

@@ -22,7 +22,7 @@ It doesn't alter the semantics of JavaScript.
React can either render HTML tags (strings) or React components (classes).
To render a HTML tag, just use lower-case tag names in JSX:
To render an HTML tag, just use lower-case tag names in JSX:
```javascript
var myDivElement = <div className="foo" />;