- Fitur hot menu ditambah
- Fitur portofolio khusus status investasi
- Fitur halaman transaksi
### No Issue
#fix:
- Perubahan minor
This commit is contained in:
2023-11-03 16:28:05 +08:00
parent c90aca8e8f
commit 33e363af89
51 changed files with 1953 additions and 408 deletions

View File

@@ -0,0 +1,19 @@
"use client";
import HeaderTamplate from "@/app_modules/component/header_tamplate";
import { AppShell, Title } from "@mantine/core";
import React from "react";
export default function LayoutTransaksiInvestasi({
children,
}: {
children: React.ReactNode;
}) {
return (
<>
<AppShell header={<Title order={6}>History transaksi</Title>}>
{children}
</AppShell>
</>
);
}