class ModalExample extends React.Component {
constructor(props) {
super(props);
this.state = {
modal: true,
tooltipOpen: false
};
this.toggleModal = this.toggleModal.bind(this);
this.toggleTooltip = this.toggleTooltip.bind(this);
}
toggleModal() {
this.setState({
modal: !this.state.modal
});
}
toggleTooltip() {
this.setState({
tooltipOpen: !this.state.tooltipOpen
});
}
...
}
<span className="closeBt" onClick={this.toggleModal}></span>
<Tooltip isOpen={this.state.tooltipOpen}></Tooltop>
'React' 카테고리의 다른 글
비밀번호 변경 버튼 resetpassword button event (0) | 2020.07.27 |
---|---|
큰따옴표 안에 작은따옴표 넣어야 할 때 t(" ' ' ") (0) | 2020.07.27 |
[React] input value check 인풋 값 체크 (0) | 2020.06.04 |
onClick 시 다른 요소 Toggle 시키기 (0) | 2020.04.10 |
scss에서 img 경로 설정 (0) | 2020.04.10 |
댓글