React Form 😎 목적 UseState Hook으로 form을 객체 상태로 관리 input Controlled Component (제어 컴포넌트) 객체의 값을 Bracket notation (괄호 표기법)으로 접근 👶 1. 기본 뼈대 import React from 'react' export default function AppForm() { const handleSubmit = (e) => { e.preventDefault(); } return ( 이름 : ID : Password : Submit ) } AppForm.jsx Form에 e.preventDefault를 해준 이유는 새로고침을 방지하기 위해서이다. 자세한 링크 : https://react-ko.dev/reference/react-do..