diff --git a/content/blog/2017-09-08-dom-attributes-in-react-16.md b/content/blog/2017-09-08-dom-attributes-in-react-16.md index 31c66e53..ba84982f 100644 --- a/content/blog/2017-09-08-dom-attributes-in-react-16.md +++ b/content/blog/2017-09-08-dom-attributes-in-react-16.md @@ -29,7 +29,7 @@ In React 16, we are making a change. Now, any unknown attributes will end up in React has always provided a JavaScript-centric API to the DOM. Since React components often take both custom and DOM-related props, it makes sense for React to use the `camelCase` convention just like the DOM APIs: ```js -
+ ``` This has not changed. However, the way we enforced it in the past forced us to maintain a whitelist of all valid React DOM attributes in the bundle: @@ -55,10 +55,10 @@ With the new approach, both of these problems are solved. With React 16, you can ```js // Yes, please - + // Warning: Invalid DOM property `tabindex`. Did you mean `tabIndex`? - + ``` In other words, the way you use DOM components in React hasn't changed, but now you have some new capabilities. @@ -120,7 +120,7 @@ Below is a detailed list of them. * **Known attributes with a different canonical React name:** ```js - + ``` diff --git a/content/docs/introducing-jsx.md b/content/docs/introducing-jsx.md index 535f18b5..8b9aef36 100644 --- a/content/docs/introducing-jsx.md +++ b/content/docs/introducing-jsx.md @@ -92,7 +92,7 @@ function getGreeting(user) { You may use quotes to specify string literals as attributes: ```js -const element = ; +const element = ; ``` You may also use curly braces to embed a JavaScript expression in an attribute: diff --git a/content/docs/reference-dom-elements.md b/content/docs/reference-dom-elements.md index 6145424a..3353eefc 100644 --- a/content/docs/reference-dom-elements.md +++ b/content/docs/reference-dom-elements.md @@ -130,7 +130,7 @@ As of React 16, any standard [or custom](/blog/2017/09/08/dom-attributes-in-reac React has always provided a JavaScript-centric API to the DOM. Since React components often take both custom and DOM-related props, React uses the `camelCase` convention just like the DOM APIs: ```js - // Just like node.tabIndex DOM API + // Just like node.tabIndex DOM API // Just like node.className DOM API // Just like node.readOnly DOM API ```