Add Daftar Peserta, Daftar Sponsor, Detail Sponsor, Tambah Sponsor

This commit is contained in:
2025-01-15 17:35:47 +08:00
parent d0680f2743
commit a649fad7cb
26 changed files with 651 additions and 5 deletions

View File

@@ -0,0 +1,25 @@
"use client"
import { Stack } from '@mantine/core';
import ComponentEvent_ListPeserta from '../../component/detail/list_peserta';
import { MODEL_EVENT_PESERTA } from '../../model/interface';
import { useParams } from 'next/navigation';
import ComponentEvent_ListPesertaNew from '../../component/detail/list_peserta_new';
// function Event_DaftarPeserta({ totalPeserta, eventId, isNewPeserta }: {
// totalPeserta?: number;
// eventId?: string;
// isNewPeserta?: boolean | null;
// }) {
function Event_DaftarPeserta() {
return (
<>
<Stack>
<ComponentEvent_ListPesertaNew/>
{/* <ComponentEvent_ListPeserta eventId={params.id} total={totalPeserta as any} isNewPeserta={isNewPeserta} /> */}
</Stack>
</>
);
}
export default Event_DaftarPeserta;