This commit is contained in:
hanwha
2025-07-16 12:54:37 +09:00
parent 645e0b033b
commit eaa0d7e820

View File

@@ -8,12 +8,7 @@ const LoginForm = () => {
const [pw, setPw] = useState('') //PW const [pw, setPw] = useState('') //PW
const [param, setParam] = useState() const [param, setParam] = useState()
const login = () => { const login =
axios.post('login/oauth-kakao', {
})
}
return ( return (
<> <>
@@ -30,4 +25,6 @@ const LoginForm = () => {
<button type="button" onClick={login}></button> <button type="button" onClick={login}></button>
</> </>
) )
} }
export default LoginForm;