Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 288 Bytes

File metadata and controls

26 lines (20 loc) · 288 Bytes


Methods

  • Use underscore prefix for internal methods of a react component.
// bad
React.createClass({
  onClickSubmit() {
    // do stuff
  }

  // other stuff
});

// good
React.createClass({
  _onClickSubmit() {
    // do stuff
  }

  // other stuff
});