feat
Desc: - Edit investasi - Portofolio Investasi - Upload bukti transfer #No Issue
This commit is contained in:
9
src/app/dev/investasi/edit/[id]/layout.tsx
Normal file
9
src/app/dev/investasi/edit/[id]/layout.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
import { LayoutEditInvestasi } from "@/app_modules/investasi";
|
||||
import React from "react";
|
||||
|
||||
export default async function Layout({children, params}: {children: React.ReactNode, params:{id: string}}) {
|
||||
return<>
|
||||
<LayoutEditInvestasi>{children}</LayoutEditInvestasi>
|
||||
</>
|
||||
}
|
||||
11
src/app/dev/investasi/edit/[id]/page.tsx
Normal file
11
src/app/dev/investasi/edit/[id]/page.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import { EditInvestasi } from "@/app_modules/investasi";
|
||||
|
||||
|
||||
export default async function Page({params}: {params: {id: string}}) {
|
||||
return (
|
||||
<>
|
||||
|
||||
<EditInvestasi id={params.id} />
|
||||
</>
|
||||
);
|
||||
}
|
||||
8
src/app/dev/investasi/edit_intro/[id]/layout.tsx
Normal file
8
src/app/dev/investasi/edit_intro/[id]/layout.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import { LayoutEditIntroInvestasi } from "@/app_modules/investasi";
|
||||
import React from "react";
|
||||
|
||||
export default async function Layout({children}: {children: React.ReactNode}) {
|
||||
return<>
|
||||
<LayoutEditIntroInvestasi>{children}</LayoutEditIntroInvestasi>
|
||||
</>
|
||||
}
|
||||
9
src/app/dev/investasi/edit_intro/[id]/page.tsx
Normal file
9
src/app/dev/investasi/edit_intro/[id]/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { EditIntroInvestasi } from "@/app_modules/investasi";
|
||||
|
||||
export default async function Page({ params }: { params: { id: string } }) {
|
||||
return (
|
||||
<>
|
||||
<EditIntroInvestasi />
|
||||
</>
|
||||
);
|
||||
}
|
||||
7
src/app/dev/investasi/konfirmasi/page.tsx
Normal file
7
src/app/dev/investasi/konfirmasi/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { KonfirmasiBuktiInvestasi } from "@/app_modules/investasi";
|
||||
|
||||
export default async function Page() {
|
||||
return <>
|
||||
<KonfirmasiBuktiInvestasi/>
|
||||
</>
|
||||
}
|
||||
7
src/app/dev/investasi/main/portofolio/page.tsx
Normal file
7
src/app/dev/investasi/main/portofolio/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { PortofolioInvestasi } from "@/app_modules/investasi";
|
||||
|
||||
export default async function Page() {
|
||||
return<>
|
||||
<PortofolioInvestasi/>
|
||||
</>
|
||||
}
|
||||
8
src/app/dev/investasi/porto_detail/[id]/layout.tsx
Normal file
8
src/app/dev/investasi/porto_detail/[id]/layout.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import { LayoutPortofolioDetailInvestasi } from "@/app_modules/investasi";
|
||||
import React from "react";
|
||||
|
||||
export default async function Layout({children, params}: {children: React.ReactNode, params: {id: string}}) {
|
||||
return<>
|
||||
<LayoutPortofolioDetailInvestasi id={params.id}>{children}</LayoutPortofolioDetailInvestasi>
|
||||
</>
|
||||
}
|
||||
7
src/app/dev/investasi/porto_detail/[id]/page.tsx
Normal file
7
src/app/dev/investasi/porto_detail/[id]/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { PortofolioDetailInvestasi } from "@/app_modules/investasi";
|
||||
|
||||
export default async function Page({params} : {params: {id: string}}) {
|
||||
return<>
|
||||
<PortofolioDetailInvestasi/>
|
||||
</>
|
||||
}
|
||||
Reference in New Issue
Block a user