## feat - Tampilan forum - Tampilan forumku - Tampilan komentar - Tampilam posting - Tampilan Detail posting - Tampilan Edit postinf - Tampilan edit komentat - Tampilan report posting - Tampilan report komentar ### No issuee
22 lines
438 B
TypeScript
22 lines
438 B
TypeScript
"use client";
|
|
|
|
import { AppShell } from "@mantine/core";
|
|
import React from "react";
|
|
import ComponentForum_HeaderTamplate from "../../component/header/header_tamplate";
|
|
|
|
export default function LayoutForum_EditPosting({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<>
|
|
<AppShell
|
|
header={<ComponentForum_HeaderTamplate title="Edit Postingan" />}
|
|
>
|
|
{children}
|
|
</AppShell>
|
|
</>
|
|
);
|
|
}
|