feat:
- Fitur hot menu ditambah - Fitur portofolio khusus status investasi - Fitur halaman transaksi ### No Issue #fix: - Perubahan minor
This commit is contained in:
8
src/app/dev/investasi/detail_portofolio/draft/layout.tsx
Normal file
8
src/app/dev/investasi/detail_portofolio/draft/layout.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import { LayoutDetailDraftInvestasi } from "@/app_modules/investasi";
|
||||
import React from "react";
|
||||
|
||||
export default async function Layout({children}: {children: React.ReactNode}) {
|
||||
return<>
|
||||
<LayoutDetailDraftInvestasi>{children}</LayoutDetailDraftInvestasi>
|
||||
</>
|
||||
}
|
||||
8
src/app/dev/investasi/detail_portofolio/draft/page.tsx
Normal file
8
src/app/dev/investasi/detail_portofolio/draft/page.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import { DetailDraftInvestasi } from "@/app_modules/investasi";
|
||||
|
||||
export default async function Page() {
|
||||
return<>
|
||||
<DetailDraftInvestasi/>
|
||||
|
||||
</>
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
import { LayoutDetailPublishInvestasi } from "@/app_modules/investasi";
|
||||
import React from "react";
|
||||
|
||||
export default async function Layout({children}: {children: React.ReactNode}) {
|
||||
return<>
|
||||
<LayoutDetailPublishInvestasi>{children}</LayoutDetailPublishInvestasi>
|
||||
|
||||
</>
|
||||
}
|
||||
7
src/app/dev/investasi/detail_portofolio/publish/page.tsx
Normal file
7
src/app/dev/investasi/detail_portofolio/publish/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { DetailPublishInvestasi } from "@/app_modules/investasi";
|
||||
|
||||
export default async function Page() {
|
||||
return<>
|
||||
<DetailPublishInvestasi/>
|
||||
</>
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
import { LayoutDetailRejectInvestasi } from "@/app_modules/investasi";
|
||||
import React from "react";
|
||||
|
||||
export default async function Layout({children}: {children: React.ReactNode}) {
|
||||
return<>
|
||||
<LayoutDetailRejectInvestasi>{children}</LayoutDetailRejectInvestasi>
|
||||
</>
|
||||
}
|
||||
7
src/app/dev/investasi/detail_portofolio/reject/page.tsx
Normal file
7
src/app/dev/investasi/detail_portofolio/reject/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { DetailRejectInvestasi } from "@/app_modules/investasi";
|
||||
|
||||
export default async function Page() {
|
||||
return<>
|
||||
<DetailRejectInvestasi/>
|
||||
</>
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
import { LayoutDetailReviewInvestasi } from "@/app_modules/investasi";
|
||||
import React from "react";
|
||||
|
||||
export default async function Layout({children}: {children: React.ReactNode}) {
|
||||
return<>
|
||||
<LayoutDetailReviewInvestasi>{children}</LayoutDetailReviewInvestasi>
|
||||
</>
|
||||
}
|
||||
7
src/app/dev/investasi/detail_portofolio/review/page.tsx
Normal file
7
src/app/dev/investasi/detail_portofolio/review/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { DetailReviewInvestasi } from "@/app_modules/investasi";
|
||||
|
||||
export default async function Page() {
|
||||
return<>
|
||||
<DetailReviewInvestasi/>
|
||||
</>
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
import { PortofolioInvestasi } from "@/app_modules/investasi";
|
||||
|
||||
export default async function Page() {
|
||||
export default async function Page({params}: {params: {id: string}}) {
|
||||
return<>
|
||||
<PortofolioInvestasi/>
|
||||
</>
|
||||
|
||||
9
src/app/dev/investasi/main/saham_saya/page.tsx
Normal file
9
src/app/dev/investasi/main/saham_saya/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { InvestasiSahamTerbeli } from "@/app_modules/investasi";
|
||||
|
||||
export default async function Page() {
|
||||
return (
|
||||
<>
|
||||
<InvestasiSahamTerbeli />
|
||||
</>
|
||||
);
|
||||
}
|
||||
9
src/app/dev/investasi/main/transaksi/page.tsx
Normal file
9
src/app/dev/investasi/main/transaksi/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { TransaksiInvestasi } from "@/app_modules/investasi";
|
||||
|
||||
export default async function Page() {
|
||||
return (
|
||||
<>
|
||||
<TransaksiInvestasi />
|
||||
</>
|
||||
);
|
||||
}
|
||||
16
src/app/dev/investasi/status_transaksi/gagal/layout.tsx
Normal file
16
src/app/dev/investasi/status_transaksi/gagal/layout.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import { LayoutStatusTransaksiInvestasi_Gagal } from "@/app_modules/investasi";
|
||||
import React from "react";
|
||||
|
||||
export default async function Layout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<>
|
||||
<LayoutStatusTransaksiInvestasi_Gagal>
|
||||
{children}
|
||||
</LayoutStatusTransaksiInvestasi_Gagal>
|
||||
</>
|
||||
);
|
||||
}
|
||||
7
src/app/dev/investasi/status_transaksi/gagal/page.tsx
Normal file
7
src/app/dev/investasi/status_transaksi/gagal/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { StatusTransaksiInvestasi_Gagal } from "@/app_modules/investasi";
|
||||
|
||||
export default async function Page() {
|
||||
return <>
|
||||
<StatusTransaksiInvestasi_Gagal/>
|
||||
</>
|
||||
}
|
||||
Reference in New Issue
Block a user