This commit is contained in:
Atif CCC
2023-12-20 01:39:36 +05:30
parent 6aa15882d4
commit 042f1aa022
31 changed files with 777 additions and 108 deletions

5
src/api/auth.js Normal file
View File

@@ -0,0 +1,5 @@
import { postRequest } from "./_setup";
export function postLoginGoogle(body) {
return postRequest(`/auth/login`, body);
}