Fix initial state example for Recat.createClass (#7867)

In the example there was a typo with setting initial state using `getInitialState` method
This commit is contained in:
Kateryna 2016-10-04 20:43:49 +03:00 committed by Dan Abramov
parent 30067fa8ca
commit c9ec4bc445
1 changed files with 1 additions and 1 deletions

View File

@ -324,7 +324,7 @@ With `React.createClass()`, you have to provide a separate `getInitialState` met
```javascript
var Counter = React.createClass({
getInitialState: function() {
return {count: props.initialCount};
return {count: this.props.initialCount};
},
// ...
});