Add Daftar Peserta, Daftar Sponsor, Detail Sponsor, Tambah Sponsor
This commit is contained in:
25
src/app_modules/event/detail/peserta/index.tsx
Normal file
25
src/app_modules/event/detail/peserta/index.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user