Desc: - Detail portofolio investasi - Detail saham terbeli - Berita - Detail berita - Detail dokumen - Detail prospektus - Edit berita - Edit dokumen - Edit prospektus #No issue
25 lines
617 B
TypeScript
25 lines
617 B
TypeScript
"use client";
|
|
|
|
import HeaderTamplate from "@/app_modules/component/header_tamplate";
|
|
import { ActionIcon, AppShell, Group, Header, Text } from "@mantine/core";
|
|
import { IconArrowLeft } from "@tabler/icons-react";
|
|
import { useRouter } from "next/navigation";
|
|
import router from "next/router";
|
|
import { title } from "process";
|
|
import React from "react";
|
|
|
|
export default function LayoutDetailProspektus({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
const router = useRouter();
|
|
return (
|
|
<>
|
|
<AppShell header={<HeaderTamplate title="Prospektus" />}>
|
|
{children}
|
|
</AppShell>
|
|
</>
|
|
);
|
|
}
|