diff --git a/frontend/src/Login.jsx b/frontend/src/Login.jsx index 58f63b1..4690e4d 100644 --- a/frontend/src/Login.jsx +++ b/frontend/src/Login.jsx @@ -57,7 +57,14 @@ const Login = () => { return (
-
+
{ + if (e.key === "Enter" && name && password) { + handleLogin(); + } + }} + >

PIROCHECK

{ placeholder: "비밀번호", }, ]} - values={[name, password]} // InputBlock props 수정에 따라 추가 + values={[name, password]} onChange={handleChange} />