# 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} />;
|
||||
}
|
||||
11
src/app/dev/event/detail/draft/layout.tsx
Normal file
11
src/app/dev/event/detail/draft/layout.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
import { LayoutEvent_DetailDraft } from "@/app_modules/event";
|
||||
import React from "react";
|
||||
|
||||
export default async function Page({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return <LayoutEvent_DetailDraft>{children}</LayoutEvent_DetailDraft>;
|
||||
}
|
||||
5
src/app/dev/event/detail/draft/page.tsx
Normal file
5
src/app/dev/event/detail/draft/page.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import { Event_DetailDraft } from "@/app_modules/event";
|
||||
|
||||
export default async function Page() {
|
||||
return <Event_DetailDraft />;
|
||||
}
|
||||
14
src/app/dev/event/detail/kontribusi/layout.tsx
Normal file
14
src/app/dev/event/detail/kontribusi/layout.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import { LayoutEvent_DetailKontribusi } from "@/app_modules/event";
|
||||
import React from "react";
|
||||
|
||||
export default async function Layout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<>
|
||||
<LayoutEvent_DetailKontribusi>{children}</LayoutEvent_DetailKontribusi>
|
||||
</>
|
||||
);
|
||||
}
|
||||
9
src/app/dev/event/detail/kontribusi/page.tsx
Normal file
9
src/app/dev/event/detail/kontribusi/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { Event_DetailKontribusi } from "@/app_modules/event";
|
||||
|
||||
export default async function Page() {
|
||||
return (
|
||||
<>
|
||||
<Event_DetailKontribusi />
|
||||
</>
|
||||
);
|
||||
}
|
||||
15
src/app/dev/event/detail/main/layout.tsx
Normal file
15
src/app/dev/event/detail/main/layout.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import { LayoutEvent_DetailMain } from "@/app_modules/event";
|
||||
import { AppShell } from "@mantine/core";
|
||||
import React from "react";
|
||||
|
||||
export default async function Layout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<>
|
||||
<LayoutEvent_DetailMain>{children}</LayoutEvent_DetailMain>
|
||||
</>
|
||||
);
|
||||
}
|
||||
7
src/app/dev/event/detail/main/page.tsx
Normal file
7
src/app/dev/event/detail/main/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { Event_DetailMain } from "@/app_modules/event";
|
||||
|
||||
export default async function Page() {
|
||||
return <>
|
||||
<Event_DetailMain/>
|
||||
</>
|
||||
}
|
||||
11
src/app/dev/event/detail/publish/layout.tsx
Normal file
11
src/app/dev/event/detail/publish/layout.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
import { LayoutEvent_DetailPublish } from "@/app_modules/event";
|
||||
import React from "react";
|
||||
|
||||
export default async function Page({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return <LayoutEvent_DetailPublish>{children}</LayoutEvent_DetailPublish>;
|
||||
}
|
||||
5
src/app/dev/event/detail/publish/page.tsx
Normal file
5
src/app/dev/event/detail/publish/page.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import { Event_DetailPublish } from "@/app_modules/event";
|
||||
|
||||
export default async function Page() {
|
||||
return <Event_DetailPublish />;
|
||||
}
|
||||
11
src/app/dev/event/detail/reject/layout.tsx
Normal file
11
src/app/dev/event/detail/reject/layout.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
import { LayoutEvent_DetailReject } from "@/app_modules/event";
|
||||
import React from "react";
|
||||
|
||||
export default async function Page({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return <LayoutEvent_DetailReject>{children}</LayoutEvent_DetailReject>;
|
||||
}
|
||||
5
src/app/dev/event/detail/reject/page.tsx
Normal file
5
src/app/dev/event/detail/reject/page.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import { Event_DetailReject } from "@/app_modules/event";
|
||||
|
||||
export default async function Page() {
|
||||
return <Event_DetailReject />;
|
||||
}
|
||||
11
src/app/dev/event/detail/review/layout.tsx
Normal file
11
src/app/dev/event/detail/review/layout.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
import { LayoutEvent_DetailReview } from "@/app_modules/event";
|
||||
import React from "react";
|
||||
|
||||
export default async function Page({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return <LayoutEvent_DetailReview>{children}</LayoutEvent_DetailReview>
|
||||
}
|
||||
6
src/app/dev/event/detail/review/page.tsx
Normal file
6
src/app/dev/event/detail/review/page.tsx
Normal file
@@ -0,0 +1,6 @@
|
||||
import { Event_DetailReview } from "@/app_modules/event";
|
||||
|
||||
|
||||
export default async function Page() {
|
||||
return <Event_DetailReview />;
|
||||
}
|
||||
8
src/app/dev/event/edit/layout.tsx
Normal file
8
src/app/dev/event/edit/layout.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import { LayoutEvent_Edit } from "@/app_modules/event";
|
||||
import React from "react";
|
||||
|
||||
export default async function Layout({children}: {children: React.ReactNode}) {
|
||||
return <>
|
||||
<LayoutEvent_Edit>{children}</LayoutEvent_Edit>
|
||||
</>
|
||||
}
|
||||
7
src/app/dev/event/edit/page.tsx
Normal file
7
src/app/dev/event/edit/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { Event_Edit } from "@/app_modules/event";
|
||||
|
||||
export default async function Page() {
|
||||
return<>
|
||||
<Event_Edit/>
|
||||
</>
|
||||
}
|
||||
11
src/app/dev/event/main/beranda/page.tsx
Normal file
11
src/app/dev/event/main/beranda/page.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
"use client";
|
||||
|
||||
import { Event_Beranda } from "@/app_modules/event";
|
||||
|
||||
export default function Page() {
|
||||
return (
|
||||
<>
|
||||
<Event_Beranda />
|
||||
</>
|
||||
);
|
||||
}
|
||||
8
src/app/dev/event/main/kontribusi/page.tsx
Normal file
8
src/app/dev/event/main/kontribusi/page.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import { Event_Kontribusi } from "@/app_modules/event";
|
||||
|
||||
|
||||
export default async function Page() {
|
||||
return<>
|
||||
<Event_Kontribusi/>
|
||||
</>
|
||||
}
|
||||
8
src/app/dev/event/main/layout.tsx
Normal file
8
src/app/dev/event/main/layout.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import { LayoutEvent_Main } from "@/app_modules/event";
|
||||
import React from "react";
|
||||
|
||||
export default async function Layout({children}:{children: React.ReactNode}) {
|
||||
return<>
|
||||
<LayoutEvent_Main>{children}</LayoutEvent_Main>
|
||||
</>
|
||||
}
|
||||
5
src/app/dev/event/main/status_page/page.tsx
Normal file
5
src/app/dev/event/main/status_page/page.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import { Event_StatusPage } from "@/app_modules/event";
|
||||
|
||||
export default async function Page() {
|
||||
return <Event_StatusPage/>
|
||||
}
|
||||
5
src/app/dev/event/splash/page.tsx
Normal file
5
src/app/dev/event/splash/page.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import { Event_SplashScreen } from "@/app_modules/event";
|
||||
|
||||
export default async function Page() {
|
||||
return <Event_SplashScreen />;
|
||||
}
|
||||
Reference in New Issue
Block a user