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