fix portofolio

deskripsiL:
- fix server acton create to API
This commit is contained in:
2025-02-11 17:33:27 +08:00
parent 2a93fa787f
commit f7db89da21
13 changed files with 271 additions and 143 deletions

View File

@@ -1,10 +1,9 @@
import { Map_CreateNewPin } from "@/app_modules/map/view";
export default async function Page({ params }: { params: { id: string } }) {
let portofolioId = params.id;
export default async function Page() {
return (
<>
<Map_CreateNewPin portofolioId={portofolioId} />
<Map_CreateNewPin />
</>
);
}