[같공] 회원가입시 토큰 값 받기

ch9eri·2022년 7월 7일
0

같공

목록 보기
4/6

⌨️ signUpAPI.js

useEffect(() => {
 axios
   .post("http://localhost:8000/user/signup/", {
     userId: userId,
     password: password,
   })
   .then((response) => {
     console.log(response.data)
     })
   .catch(function (error) {
     console.log(error);
   })
 })

profile
잘하자!

0개의 댓글