-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathhello.js
37 lines (32 loc) · 937 Bytes
/
hello.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import React from 'react';
import PropTypes from 'prop-types';
import logo from './logo.svg';
export class Hello extends React.Component {
constructor(props) {
super(props);
this.state = {toggle: true};
// We generally recommend binding in the constructor or using the property initializer syntax,
// to avoid this sort of performance problem.
// https://facebook.github.io/react/docs/handling-events.html
this.onClickHandler = this.onClickHandler.bind(this);
}
onClickHandler() {
this.setState(prevState => ({
toggle: !prevState.toggle
}));
}
render() {
return (
<div>
<img style={{width: '20px'}} src={logo} alt="" />
<div>Hello {this.props.name}</div>
<button onClick={this.onClickHandler}>
toggle: {this.state.toggle ? 'ON' : 'OFF'}
</button>
</div>
);
}
}
Hello.propTypes = {
name: PropTypes.string.isRequired
};