♻️ getUser

This commit is contained in:
Timur Ercan
2023-03-01 15:11:08 +01:00
parent 53094dd9e4
commit 5e70b4620c
4 changed files with 10 additions and 6 deletions

View File

@ -0,0 +1,3 @@
export const getUser = (): Promise<any> => {
return fetch("/api/users/me");
};