Skip to content

Commit 3d9ff9c

Browse files
authored
Merge pull request #542 from jsjoeio/patch-1
Update react.md
2 parents 77bd8a5 + a3155ec commit 3d9ff9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/jsx/react.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Our [browser quickstart already sets you up to develop react applications](../qu
1515

1616
## HTML Tags vs. Components
1717

18-
React can either render HTML tags (strings) or React components (classes). The JavaScript emit for these elements is different (`React.createElement('div')` vs. `React.createElement(MyComponent)`). The way this is determined is by the *case* of the *first* letter. `foo` is treated as an HTML tag and `Foo` is treated as a component.
18+
React can either render HTML tags (strings) or React components. The JavaScript emit for these elements is different (`React.createElement('div')` vs. `React.createElement(MyComponent)`). The way this is determined is by the *case* of the *first* letter. `foo` is treated as an HTML tag and `Foo` is treated as a component.
1919

2020
## Type Checking
2121

0 commit comments

Comments
 (0)