컴포넌트에서 특정 DOM을 선택해야할 때에는 ref를 사용해야 한다.
const nameInput = userRef(null); const onClick = () => { nameInput.current.focus(); } return( <input ref={nameInput} /> <button onClick={onClick}>클릭</button> )