html 요소랑 이을 수 있음. function Main() { const [text, setText] = useState(''); const textRef = useRef(); const handleChange = (e) =>{ setText(e.target.value); console.log(textRef.current); } const handleClick = ()=>{ console.log(text); textRef.current.value = ""; } return ( 버튼 ); } export default Main; 저렇게 태그에 ref={정의한ref} 하고 ref에 접근할 때는 ref.curret로 접근해야 요소가 나옴. 난 직관적인거 좋아해서 그러면 useRef만 쓰면 저렇게 저 요소에 ..