Desc:
- Perubahan metode pengambilan data dari API ke use server
This commit is contained in:
2023-10-09 17:08:16 +08:00
parent ca66c3d2d8
commit 2b0ecc7bef
29 changed files with 87 additions and 128 deletions

View File

@@ -0,0 +1,8 @@
import { PortofolioLayout } from "@/app_modules/katalog/portofolio";
import React from "react";
export default async function Layout({children}: {children: React.ReactNode}) {
return<>
<PortofolioLayout>{children}</PortofolioLayout>
</>
}