# feat - info admin - hapus admin ## Issue: Loading data belum untuk versi alfa
23 lines
558 B
TypeScript
23 lines
558 B
TypeScript
"use client";
|
|
|
|
import { AppShell } from "@mantine/core";
|
|
import React from "react";
|
|
import ComponentDonasi_HeaderTamplate from "../../component/header_tamplate";
|
|
import { IconEdit, IconMessageShare } from "@tabler/icons-react";
|
|
import { RouterDonasi } from "@/app/lib/router_hipmi/router_donasi";
|
|
|
|
export default function LayoutDetailReviewDonasi({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
|
|
return (
|
|
<>
|
|
<AppShell header={<ComponentDonasi_HeaderTamplate title="Detail Review" />}>
|
|
{children}
|
|
</AppShell>
|
|
</>
|
|
);
|
|
}
|