Tweak for self closing tag tip

This commit is contained in:
Paul O’Shannessy 2013-11-12 12:52:44 -08:00
parent 684e5922e8
commit fe52e059b9
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ prev: if-else-in-JSX.html
next: maximum-number-of-jsx-root-nodes.html
---
In JSX, `<MyComponent />` alone is valid while `<MyComponent>` isn't.
In JSX, `<MyComponent />` alone is valid while `<MyComponent>` isn't. All tags must be closed, either with the self-closing format or with a corresponding closing tag (`</MyComponent>`).
> Note:
>