mediahub-fe/app/[locale]/(protected)/contributor/agenda-setting/utils.ts

12 lines
221 B
TypeScript
Raw Normal View History

2024-11-27 04:14:10 +00:00
import { calendarEvents, categories } from "./data";
// get events
export const getEvents = async () => {
return calendarEvents;
2024-11-27 04:14:10 +00:00
};
// get categories
export const getCategories = async () => {
return categories;
};