# Event
## feat - Tampilan detail status - Tampilan detail main - Tampilan detail kontribusi - Tampilan edit ### No issue
This commit is contained in:
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 />;
|
||||
}
|
||||
Reference in New Issue
Block a user