Files
sistem-desa-mandiri/src/module/home/lib/api_home.ts
amel 476eeb37f6 home
Deskripsi:
- list kegiatan terbaru
- divisi teraktif
- event hari ini
- diskusi

No
Issues
2024-08-28 16:48:15 +08:00

4 lines
208 B
TypeScript

export const funGetHome = async (path?: string) => {
const response = await fetch(`/api/home${(path) ? path : ''}`, { next: { tags: ['discussion'] } });
return await response.json().catch(() => null);
}