Files
hipmi/src/app_modules/forum/edit/posting/layout.tsx
Bagasbanuna02 629fd601d4 # Forum
## 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
2024-03-07 12:20:22 +08:00

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>
</>
);
}