=> DOM 요소에 접근해야 할 일이 많아
useRef 사용하여 DOM요소에 접근하기!
그 중에서도 자주 쓰인다는 focus() 연습해보자
import React, { useEffect, useRef } from "react";
const inputRef = useRef(); // {current:undefiend}
useEffect(() => {
inputRef.current.focus(); // {current:input}
}, []);
<input placeholder="어디부터될까" ref={inputRef} type="text" />
const login = () => {
alert(`나는 ${inputRef.current.value} 지롱`);
inputRef.current.focus();
};
<button onClick={login}>로그인</button>