import { useRef } from 'react'; export default function StateFormUC() { // 리액트 요소에 대한 참조 준비 const name = useRef(null); const age = useRef(null); // 요소(참조)를 통해 입력값 준비하기 const show = () => { console.log(`안녕하세요, ${name.current.value}(${age.current.value}세) 님!`); }; // 폼 그리기 return (
); }