import { Event_Riwayat } from "@/app_modules/event"; import { Event_getListRiwayatSaya } from "@/app_modules/event/fun/get/get_list_riwayat_saya"; import { Event_getListSemuaRiwayat } from "@/app_modules/event/fun/get/get_list_semua_riwayat"; import { Event_getOneById } from "@/app_modules/event/fun/get/get_one_by_id"; import { User_getUserId } from "@/app_modules/fun_global/get_user_token"; export default async function Page({ params }: { params: { id: string } }) { let eventId = params.id; const authorId = await User_getUserId(); const dataSemuaRiwayat = await Event_getListSemuaRiwayat(); const dataRiwayatSaya = await Event_getListRiwayatSaya(authorId); return ( ); }