Skip to content

Commit 3490b69

Browse files
author
name
committed
js-fix
1 parent cbf9ade commit 3490b69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: react/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -251,10 +251,10 @@ This style guide is mostly based on the standards that are currently prevalent i
251251
<Foo bar="bar" />
252252
253253
// bad
254-
<Foo style={{ left: "20px" }} />
254+
<Foo style={ left: "20px" } />
255255
256256
// good
257-
<Foo style={{ left: '20px' }} />
257+
<Foo style={ left: '20px' } />
258258
```
259259

260260
## Spacing

0 commit comments

Comments
 (0)