Files
hipmi/src/app_modules/investasi/portofolio/layout.tsx
Bagasbanuna02 e744bb95fa #fix: bug
- Desk:
- Perbaikan penempatan file
## No issuee
2024-07-10 23:42:54 +08:00

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>
</>
);
}