강의

멘토링

커뮤니티

Inflearn Community Q&A

a4tiv1694's profile image
a4tiv1694

asked

React for Anyone: Core React Course for Beginners

Introduction and usage of LifeCycle API (ii)

onClick = {smoe callback} 은 render 를 다시 호출 하나요?

Written on

·

220

0

```

render() {
return (
<div ref={(ref) => (this.myDiv = ref)}>
<h1> 안녕하세요 리액트 </h1>
<MyComponent value={this.state.counter} />
<button onClick={this.handleClick}> click here </button>
</div>
);
}

```

javascriptreact

Answer

This question is waiting for answers
Be the first to answer!
a4tiv1694's profile image
a4tiv1694

asked

Ask a question