Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 417 Bytes

alignment.md

File metadata and controls

29 lines (23 loc) · 417 Bytes


Alignment

  • Follow these alignment styles for js syntax
// bad
<Foo superLongParam="bar"
     anotherSuperLongParam="baz" />

// good
<Foo
  superLongParam="bar"
  anotherSuperLongParam="baz"
/>

// if props fit in one line then keep it on the same line
<Foo bar="bar" />

// children get indented normally
<Foo
  superLongParam="bar"
  anotherSuperLongParam="baz"
>
  <Spazz />
</Foo>