profile + summerize

This commit is contained in:
hamid zarghami
2025-07-24 17:17:55 +03:30
parent d8726db44e
commit cc744ebac9
24 changed files with 1063 additions and 20 deletions
+6
View File
@@ -0,0 +1,6 @@
import axios from "@/config/axios";
export const getProfile = async () => {
const { data } = await axios.get("/users/me");
return data;
};