sort in user table

This commit is contained in:
2026-04-08 14:17:02 +07:00
parent 2d9eaed4fb
commit 8f71d46652
9 changed files with 376 additions and 189 deletions

View File

@@ -21,6 +21,11 @@ export const apiSignUp = async (payload: any) => {
return response.data;
};
export const apiLogout = async () => {
const response = await api.post(API.Auth.LOGOUT);
return response.data;
};
export const apiSignIn = async (payload: any) => {
const response = await api.post(API.Auth.SIGNIN, payload);
return response.data;