Files
hipmi/src/app_modules/investasi/_ui/main/ui_beranda.tsx
Bagasbanuna02 dba0a5c9bf Fix : Avatar
Deskripsi:
- Ubah avatar yang image nya di ambil dari storage wibu server
- Avatar forum
- Avatra job
- Avatar Investasi
- Avatar donasi
## No Issuee
2024-10-03 12:00:05 +08:00

17 lines
321 B
TypeScript

"use client";
import { MODEL_INVESTASI } from "../../_lib/interface";
import { Investasi_ViewBeranda } from "../../_view";
export function Investasi_UiBeranda({
dataInvestasi,
}: {
dataInvestasi: MODEL_INVESTASI[];
}) {
return (
<>
<Investasi_ViewBeranda dataInvestasi={dataInvestasi} />
</>
);
}