Desc:
- Perubahan minor
This commit is contained in:
2023-10-06 13:33:59 +08:00
parent 8188728e6a
commit cc3aad4e86
12 changed files with 274 additions and 167 deletions

View File

@@ -1,12 +1,14 @@
import { loadListPortofolio } from "@/app_modules/katalog/portofolio/fun/fun_get_all_portofolio";
import { getProfile } from "@/app_modules/katalog/profile";
import { KatalogView } from "@/app_modules/katalog/view";
export default async function Page() {
const data = await getProfile();
const listPorto = await loadListPortofolio(data?.id as string)
return (
<>
{/* {JSON.stringify(data)} */}
<KatalogView data={data} />
<KatalogView data={data} porto={listPorto} />
</>
);
}