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