Browse Source

Fix a typo (#4138)

main
Soichiro Miki 3 years ago
committed by GitHub
parent
commit
a655e410fa
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      beta/src/pages/learn/javascript-in-jsx-with-curly-braces.md

2
beta/src/pages/learn/javascript-in-jsx-with-curly-braces.md

@ -165,7 +165,7 @@ The next time you see `{{` and `}}` in JSX, know that it's nothing more than an
<Gotcha>
Inline `style` properties are written in camelCase. For example, HTML `<ul style="background-color: black"`> would be written as `<ul style={{ backgroundColor: 'black' }}>` in your component.
Inline `style` properties are written in camelCase. For example, HTML `<ul style="background-color: black">` would be written as `<ul style={{ backgroundColor: 'black' }}>` in your component.
</Gotcha>

Loading…
Cancel
Save