mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-27 03:08:06 +00:00
Add return to render
This commit is contained in:
@@ -79,11 +79,13 @@ class CounterButton extends React.Component {
|
||||
}
|
||||
|
||||
render() {
|
||||
<button
|
||||
color={this.props.color}
|
||||
onClick={() => this.setState(state => ({count: state.count + 1}))}>
|
||||
Count: {this.state.count}
|
||||
</button>
|
||||
return (
|
||||
<button
|
||||
color={this.props.color}
|
||||
onClick={() => this.setState(state => ({count: state.count + 1}))}>
|
||||
Count: {this.state.count}
|
||||
</button>
|
||||
);
|
||||
}
|
||||
}
|
||||
```
|
||||
@@ -98,11 +100,13 @@ class CounterButton extends React.PureComponent {
|
||||
}
|
||||
|
||||
render() {
|
||||
<button
|
||||
color={this.props.color}
|
||||
onClick={() => this.setState(state => ({count: state.count + 1}))}>
|
||||
Count: {this.state.count}
|
||||
</button>
|
||||
return (
|
||||
<button
|
||||
color={this.props.color}
|
||||
onClick={() => this.setState(state => ({count: state.count + 1}))}>
|
||||
Count: {this.state.count}
|
||||
</button>
|
||||
);
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user