29 lines
533 B
TypeScript
29 lines
533 B
TypeScript
"use client";
|
|
|
|
import AppComponentGlobal_LayoutTamplate from "@/app_modules/_global/component_layout_tamplate";
|
|
import {
|
|
AppShell,
|
|
Box,
|
|
Button,
|
|
Group,
|
|
Header,
|
|
ScrollArea,
|
|
} from "@mantine/core";
|
|
import React, { useState } from "react";
|
|
|
|
export default function LayoutPortofolioInvestasi({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
const [active, setActive] = useState(0);
|
|
|
|
return (
|
|
<>
|
|
<AppComponentGlobal_LayoutTamplate>
|
|
{children}
|
|
</AppComponentGlobal_LayoutTamplate>
|
|
</>
|
|
);
|
|
}
|