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 18:43:49 +01:00
committed by Dan Abramov
parent 30067fa8ca
commit c9ec4bc445
+1 -1
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};
},
// ...
});