react
-
React - react hook form개발 2022. 3. 31. 23:32
학습목표 react-hook-form 패키지를 통해서 회원가입, 로그인 등 폼 양식을 작성하는 방법에 대해 알아보자. React Hook Form 이란 const Signup = (props) => { const {history} = props; //nickname, id, pwd const [nickname, set_nickname] = useState(""); const [id, set_id] = useState(""); const [pw, set_pw] = useState(""); const [pwCheck, set_pwCheck] = useState(""); //err message const [err_nickname, setErr_nickname] = useState(""); const [err..