# feat - info admin - hapus admin ## Issue: Loading data belum untuk versi alfa
16 lines
397 B
TypeScript
16 lines
397 B
TypeScript
"use client"
|
|
|
|
import { AppShell } from "@mantine/core"
|
|
import React from "react"
|
|
import ComponentDonasi_HeaderTamplate from "../../../component/header_tamplate"
|
|
|
|
export default function LayoutKabarDonasi({children}: {children: React.ReactNode}){
|
|
return<>
|
|
<AppShell
|
|
header={<ComponentDonasi_HeaderTamplate title="Kabar Terbaru"/>}
|
|
>
|
|
{children}
|
|
</AppShell>
|
|
|
|
</>
|
|
} |