ref
필요한 상황
권장되지 않음
input 사용예시
<input ref={(ref) => {this.input=ref}} />
this.input.focus()컴포넌트 사용예시
// #1
<MyComponent ref={(ref) => {this.MyComponent=ref}} />
// #2
<ScrollBox ref={(ref) => {this.scrollBox=ref}} />
<button onClick={() => this.scrollBox.scrollToBottom()}>Last updated