Browse Source

Update CONTRIBUTING.md (#1234)

The code example directly before the statement "Use semicolons" was missing a semicolon :)
main
Rishi Advani 6 years ago
committed by Alex Krolick
parent
commit
41ac3cf45d
  1. 2
      CONTRIBUTING.md

2
CONTRIBUTING.md

@ -72,7 +72,7 @@ Instead, **do** write this:
```js
class MyComponent extends React.Component {
constructor(props) {
super(props)
super(props);
this.handleChange = this.handleChange.bind(this);
this.state = {value: ''};
}

Loading…
Cancel
Save