Files
sistem-desa-mandiri/src/module/calender/lib/api_calender.ts
2024-08-15 11:53:26 +08:00

4 lines
219 B
TypeScript

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