# Event
## feat - Tampilan detail status - Tampilan detail main - Tampilan detail kontribusi - Tampilan edit ### No issue
This commit is contained in:
13
src/app/dev/event/create/layout.tsx
Normal file
13
src/app/dev/event/create/layout.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import { LayoutEvent_Create } from "@/app_modules/event";
|
||||
|
||||
export default async function Layout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<>
|
||||
<LayoutEvent_Create>{children}</LayoutEvent_Create>
|
||||
</>
|
||||
);
|
||||
}
|
||||
9
src/app/dev/event/create/page.tsx
Normal file
9
src/app/dev/event/create/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { Event_Create } from "@/app_modules/event";
|
||||
import { Event_getListUser } from "@/app_modules/event/fun/get/get_list_user";
|
||||
import _ from "lodash";
|
||||
|
||||
export default async function Page() {
|
||||
const listUser = await Event_getListUser();
|
||||
|
||||
return <Event_Create listUser={listUser as any} />;
|
||||
}
|
||||
Reference in New Issue
Block a user