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 4f2168e0d5
commit 976ca17896

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};
},
// ...
});