upd: document

Deskripsi:
- share document

No Issues
This commit is contained in:
amel
2024-08-22 17:40:39 +08:00
parent 176ec5ec64
commit 018f3de76a
9 changed files with 258 additions and 37 deletions

View File

@@ -70,4 +70,11 @@ export const funAddDivisionMember = async (path: string, data: IFormMemberDivisi
body: JSON.stringify(data),
});
return await response.json().catch(() => null);
}
export const funGetListDivisionByIdDivision = async (path: string) => {
const response = await fetch(`/api/division/more${path}`);
return await response.json().catch(() => null);
}