Handling Event
차이점
사용법
import React from 'react';
class MyComponent extends React.Component {
constructor(props) {
super(props);
this.state = {
text: "this is my component"
};
this.onClickButton = this.onClickButton.bind(this); // 유의할 부분
}
onClickButton(e) {
alert(this.state.text);
}
render() {
return (
<button onClick={this.onClickButton}>
{this.props.buttonValue}
</button>
)
}
}Last updated