21.10.13 4주차 리엑트 - Welcome Homepage와 Login page만들기 로그인 페이지 예제
import React, { useRef } from "react"; import { useHistory } from "react-router-dom"; export default function LoginForm() { const history = useHistory(); const emailRef = useRef(); const passwordRef = useRef(); const submitForm = (e) => { e.preventDefault(); const email = emailRef.current.value; const password = passwordRef.current.value; // DetailPage로 이동하는 코드를 작성하세요. history.push(`/detail?emai..
2021.10.13