fix: File view

Deksripsi:
- Tampilan file view pdf
- Optimalisasi admin
## No Isuue
This commit is contained in:
2024-09-06 11:36:53 +08:00
parent 74108c3096
commit 84b7b381f6
112 changed files with 2230 additions and 807 deletions

View File

@@ -0,0 +1,8 @@
"use client"
export function Investasi_UiPortofolio() {
return <>
</>;
}

View File

@@ -0,0 +1,11 @@
"use client";
import { Investasi_ViewSahamSaya } from "../../_view";
export function Investasi_UiSahamSaya({ dataSaham }: { dataSaham: any[] }) {
return (
<>
<Investasi_ViewSahamSaya dataSaham={dataSaham} />
</>
);
}