Deskripsi: - Ubah avatar yang image nya di ambil dari storage wibu server - Avatar forum - Avatra job - Avatar Investasi - Avatar donasi ## No Issuee
17 lines
321 B
TypeScript
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} />
|
|
</>
|
|
);
|
|
}
|