Test foto server
This commit is contained in:
14
src/app/dev/investasi/file-view/[id]/page.tsx
Normal file
14
src/app/dev/investasi/file-view/[id]/page.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import { investasi_funGetProspekById } from "@/app_modules/investasi/_fun";
|
||||
import { Investasi_UiFileView } from "@/app_modules/investasi/_ui";
|
||||
|
||||
export default async function Page({ params }: { params: { id: string } }) {
|
||||
const prospekId = params.id;
|
||||
const dataProspek = await investasi_funGetProspekById({ prospekId: prospekId });
|
||||
|
||||
|
||||
return (
|
||||
<>
|
||||
<Investasi_UiFileView prospekId={prospekId} />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user