Skip to content

Latest commit

 

History

History
28 lines (26 loc) · 627 Bytes

10.formatting-props.md

File metadata and controls

28 lines (26 loc) · 627 Bytes

Formatting props

Reference:

class TestComponent extends Component {
  render() {
    return (
      <div>
        // bad
        <Person
          firstName="Michael"/>
        // good
        <Person firstName="Michael"/>

        // bad
        <Person firstName="Michael" lastName="Chan" occupation="Designer" favoriteFood="Drunken Noodles"/>
        // good
        <Person
          firstName="Michael"
          lastName="Chan"
          occupation="Designer"
          favoriteFood="Drunken Noodles"/>
      </div>
    )
  }
}