You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: react/README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -185,7 +185,7 @@
185
185
186
186
## Quotes
187
187
188
-
- Always use double quotes (`"`) forJSX attributes, but single quotes for all other JS. eslint: [`jsx-quotes`](http://eslint.org/docs/rules/jsx-quotes)
188
+
- Always use double quotes (`"`) forJSX attributes, but single quotes(`'`) for all other JS. eslint: [`jsx-quotes`](http://eslint.org/docs/rules/jsx-quotes)
189
189
190
190
> Why? Regular HTML attributes also typically use double quotes instead of single, so JSX attributes mirror this convention.
191
191
@@ -514,7 +514,7 @@
514
514
1.`componentWillUnmount`
515
515
1.*clickHandlers or eventHandlers* like `onClickSubmit()` or `onChangeDescription()`
516
516
1.*getter methods for`render`* like `getSelectReason()` or `getFooterContent()`
517
-
1.*Optional render methods* like `renderNavigation()` or `renderProfilePicture()`
517
+
1.*optional render methods* like `renderNavigation()` or `renderProfilePicture()`
518
518
1.`render`
519
519
520
520
- How to define `propTypes`, `defaultProps`, `contextTypes`, etc...
@@ -569,7 +569,7 @@
569
569
1.`componentWillUnmount`
570
570
1.*clickHandlers or eventHandlers* like `onClickSubmit()` or `onChangeDescription()`
571
571
1.*getter methods for`render`* like `getSelectReason()` or `getFooterContent()`
572
-
1.*Optional render methods* like `renderNavigation()` or `renderProfilePicture()`
572
+
1.*optional render methods* like `renderNavigation()` or `renderProfilePicture()`
0 commit comments