kontenhumas-fe/app/[locale]/(admin)/admin/agenda-setting/utils.ts

12 lines
221 B
TypeScript
Raw Normal View History

2025-09-25 15:46:47 +00:00
import { calendarEvents, categories } from "./data";
// get events
export const getEvents = async () => {
return calendarEvents;
};
// get categories
export const getCategories = async () => {
return categories;
};