mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-23 20:23:08 +00:00
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:
@@ -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};
|
||||
},
|
||||
// ...
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user