33 lines
965 B
TypeScript
33 lines
965 B
TypeScript
"use client";
|
|
|
|
import { RouterInvestasi_OLD } from "@/app/lib/router_hipmi/router_investasi";
|
|
import { Warna } from "@/app/lib/warna";
|
|
import AppComponentGlobal_LayoutTamplate from "@/app_modules/_global/component_layout_tamplate";
|
|
import ComponentGlobal_HeaderTamplate from "@/app_modules/_global/header_tamplate";
|
|
import { AppShell, Button, Center, Footer } from "@mantine/core";
|
|
import { useRouter } from "next/navigation";
|
|
import React from "react";
|
|
import toast from "react-simple-toasts";
|
|
|
|
export default function LayoutEditBeritaInvestasi({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
const router = useRouter();
|
|
return (
|
|
<>
|
|
<AppComponentGlobal_LayoutTamplate
|
|
header={<ComponentGlobal_HeaderTamplate title="Edit Berita" />}
|
|
// footer={
|
|
// <Footer height={70} sx={{ borderStyle: "none" }}>
|
|
|
|
// </Footer>
|
|
// }
|
|
>
|
|
{children}
|
|
</AppComponentGlobal_LayoutTamplate>
|
|
</>
|
|
);
|
|
}
|