Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 270 Bytes

File metadata and controls

19 lines (14 loc) · 270 Bytes


Quotes

  • Always use double quotes (") for JSX attributes, but single quotes for all other JavaScript.
// bad
<Foo bar='bar' />

// good
<Foo bar="bar" />

// bad
<Foo style={{ left: "20px" }} />

// good
<Foo style={{ left: '20px' }} />