'use client';
import axios from "axios";
import { useState } from "react";
const LoginForm = () => {
const [id, setId] = useState('') //ID
const [pw, setPw] = useState('') //PW
const [param, setParam] = useState()
const login = () => {
axios.post('login/oauth-kakao', {
})
}
return (
<>
{setId(e.target.value)}}/>
{setPw(e.target.value)}}/>
>
)
}