"server/git@compmath.korea.ac.kr:students/eue.git" did not exist on "aa8040679c138f77c907f2576ab40672f1023111"
Commit b5bf87d3 authored by 이재연's avatar 이재연
Browse files

profile 끝

parent 69cc7a7d
import axios from "axios";
const login = async (payload) => {
const { data } = await axios.post("/api/login", payload);
return data;
};
const signup = async (payload) => {
const { data } = await axios.post("/api/signup", payload);
return data;
};
const profileApi = { login, signup };
export default profileApi;
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment