## feat - Tampilan detail status - Tampilan detail main - Tampilan detail kontribusi - Tampilan edit ### No issue
22 lines
433 B
TypeScript
22 lines
433 B
TypeScript
"use client";
|
|
|
|
import { AppShell } from "@mantine/core";
|
|
import React from "react";
|
|
import ComponentEvent_HeaderTamplate from "../../component/header_tamplate";
|
|
|
|
export default function LayoutEvent_DetailPublish({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<>
|
|
<AppShell
|
|
header={<ComponentEvent_HeaderTamplate title="Detail Publish" />}
|
|
>
|
|
{children}
|
|
</AppShell>
|
|
</>
|
|
);
|
|
}
|