Deskripsi: - list kegiatan terbaru - divisi teraktif - event hari ini - diskusi No Issues
4 lines
208 B
TypeScript
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);
|
|
} |