feat
Desc: - Detail portofolio investasi - Detail saham terbeli - Berita - Detail berita - Detail dokumen - Detail prospektus - Edit berita - Edit dokumen - Edit prospektus #No issue
This commit is contained in:
14
src/app/dev/investasi/berita/[id]/layout.tsx
Normal file
14
src/app/dev/investasi/berita/[id]/layout.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import { LayoutBeritaInvestasi } from "@/app_modules/investasi";
|
||||
import React from "react";
|
||||
|
||||
export default async function Layout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<>
|
||||
<LayoutBeritaInvestasi>{children}</LayoutBeritaInvestasi>
|
||||
</>
|
||||
);
|
||||
}
|
||||
9
src/app/dev/investasi/berita/[id]/page.tsx
Normal file
9
src/app/dev/investasi/berita/[id]/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { BeritaInvestasi } from "@/app_modules/investasi";
|
||||
|
||||
export default async function Page({params}: {params: {id: string}}) {
|
||||
return (
|
||||
<>
|
||||
<BeritaInvestasi id={params.id}/>
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -1,8 +1,14 @@
|
||||
import { LayoutDetailInvestasi } from "@/app_modules/investasi";
|
||||
import React from "react";
|
||||
|
||||
export default async function Layout({children}: {children: React.ReactNode}) {
|
||||
return<>
|
||||
<LayoutDetailInvestasi>{children}</LayoutDetailInvestasi>
|
||||
export default async function Layout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<>
|
||||
<LayoutDetailInvestasi>{children}</LayoutDetailInvestasi>
|
||||
</>
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { DetailInvestasi } from "@/app_modules/investasi";
|
||||
|
||||
export default async function Page() {
|
||||
export default async function Page({params}: {params: {id: string}}) {
|
||||
return<>
|
||||
<DetailInvestasi/>
|
||||
<DetailInvestasi id={params.id}/>
|
||||
</>
|
||||
}
|
||||
14
src/app/dev/investasi/detail_berita/[id]/layout.tsx
Normal file
14
src/app/dev/investasi/detail_berita/[id]/layout.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import { LayoutDetailBeritaInvestasi } from "@/app_modules/investasi";
|
||||
import React from "react";
|
||||
|
||||
export default async function Layout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<>
|
||||
<LayoutDetailBeritaInvestasi>{children}</LayoutDetailBeritaInvestasi>
|
||||
</>
|
||||
);
|
||||
}
|
||||
7
src/app/dev/investasi/detail_berita/[id]/page.tsx
Normal file
7
src/app/dev/investasi/detail_berita/[id]/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { DetailBeritaInvestasi } from "@/app_modules/investasi";
|
||||
|
||||
export default async function Page() {
|
||||
return <>
|
||||
<DetailBeritaInvestasi/>
|
||||
</>
|
||||
}
|
||||
14
src/app/dev/investasi/detail_dokumen/[id]/layout.tsx
Normal file
14
src/app/dev/investasi/detail_dokumen/[id]/layout.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import { LayoutDetailDokumenInvestasi } from "@/app_modules/investasi";
|
||||
import React from "react";
|
||||
|
||||
export default async function Layout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<>
|
||||
<LayoutDetailDokumenInvestasi>{children}</LayoutDetailDokumenInvestasi>
|
||||
</>
|
||||
);
|
||||
}
|
||||
7
src/app/dev/investasi/detail_dokumen/[id]/page.tsx
Normal file
7
src/app/dev/investasi/detail_dokumen/[id]/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { DetailDokumenInvestasi } from "@/app_modules/investasi";
|
||||
|
||||
export default async function Page() {
|
||||
return<>
|
||||
<DetailDokumenInvestasi/>
|
||||
</>
|
||||
}
|
||||
@@ -2,6 +2,6 @@ import { PortofolioDetailInvestasi } from "@/app_modules/investasi";
|
||||
|
||||
export default async function Page({params} : {params: {id: string}}) {
|
||||
return<>
|
||||
<PortofolioDetailInvestasi/>
|
||||
<PortofolioDetailInvestasi id={params.id}/>
|
||||
</>
|
||||
}
|
||||
8
src/app/dev/investasi/detail_prospektus/[id]/layout.tsx
Normal file
8
src/app/dev/investasi/detail_prospektus/[id]/layout.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import { LayoutDetailPropektus } from "@/app_modules/investasi";
|
||||
import React from "react";
|
||||
|
||||
export default async function Layout({children}: {children: React.ReactNode}) {
|
||||
return<>
|
||||
<LayoutDetailPropektus>{children}</LayoutDetailPropektus>
|
||||
</>
|
||||
}
|
||||
7
src/app/dev/investasi/detail_prospektus/[id]/page.tsx
Normal file
7
src/app/dev/investasi/detail_prospektus/[id]/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { DetailPropektus } from "@/app_modules/investasi";
|
||||
|
||||
export default async function Page(params:any) {
|
||||
return<>
|
||||
<DetailPropektus/>
|
||||
</>
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
import { LayoutDetailSahamTerbeli } from "@/app_modules/investasi";
|
||||
import React from "react";
|
||||
|
||||
export default async function Layout({children}: {children: React.ReactNode}) {
|
||||
return<>
|
||||
<LayoutDetailSahamTerbeli>{children}</LayoutDetailSahamTerbeli>
|
||||
</>
|
||||
}
|
||||
5
src/app/dev/investasi/detail_saham_terbeli/[id]/page.tsx
Normal file
5
src/app/dev/investasi/detail_saham_terbeli/[id]/page.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import { DetailSahamTerbeli } from "@/app_modules/investasi";
|
||||
|
||||
export default async function Page({ params }: { params: { id: string } }) {
|
||||
return <DetailSahamTerbeli id={params.id} />;
|
||||
}
|
||||
8
src/app/dev/investasi/edit_berita/[id]/layout.tsx
Normal file
8
src/app/dev/investasi/edit_berita/[id]/layout.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import { LayoutEditBeritaInvestasi } from "@/app_modules/investasi";
|
||||
import React from "react";
|
||||
|
||||
export default async function Layout({children}: { children: React.ReactNode }) {
|
||||
return<>
|
||||
<LayoutEditBeritaInvestasi>{children}</LayoutEditBeritaInvestasi>
|
||||
</>
|
||||
}
|
||||
7
src/app/dev/investasi/edit_berita/[id]/page.tsx
Normal file
7
src/app/dev/investasi/edit_berita/[id]/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { EditBeritaInvestasi } from "@/app_modules/investasi";
|
||||
|
||||
export default async function Page(params:any) {
|
||||
return<>
|
||||
<EditBeritaInvestasi/>
|
||||
</>
|
||||
}
|
||||
8
src/app/dev/investasi/edit_dokumen/[id]/layout.tsx
Normal file
8
src/app/dev/investasi/edit_dokumen/[id]/layout.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import { LayoutEditDokumenInvestasi } from "@/app_modules/investasi";
|
||||
import React from "react";
|
||||
|
||||
export default async function Layout({children}: {children: React.ReactNode}) {
|
||||
return<>
|
||||
<LayoutEditDokumenInvestasi>{children}</LayoutEditDokumenInvestasi>
|
||||
</>
|
||||
}
|
||||
7
src/app/dev/investasi/edit_dokumen/[id]/page.tsx
Normal file
7
src/app/dev/investasi/edit_dokumen/[id]/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { EditDokumenInvestasi } from "@/app_modules/investasi";
|
||||
|
||||
export default async function Page() {
|
||||
return<>
|
||||
<EditDokumenInvestasi/>
|
||||
</>
|
||||
}
|
||||
8
src/app/dev/investasi/edit_prospektus/[id]/layout.tsx
Normal file
8
src/app/dev/investasi/edit_prospektus/[id]/layout.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import { LayoutEditProspektusInvestasi } from "@/app_modules/investasi";
|
||||
import React from "react";
|
||||
|
||||
export default async function Layout({children}: {children: React.ReactNode}) {
|
||||
return<>
|
||||
<LayoutEditProspektusInvestasi>{children}</LayoutEditProspektusInvestasi>
|
||||
</>
|
||||
}
|
||||
7
src/app/dev/investasi/edit_prospektus/[id]/page.tsx
Normal file
7
src/app/dev/investasi/edit_prospektus/[id]/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { EditProspektusInvestasi } from "@/app_modules/investasi";
|
||||
|
||||
export default async function Page() {
|
||||
return<>
|
||||
<EditProspektusInvestasi/>
|
||||
</>
|
||||
}
|
||||
Reference in New Issue
Block a user