feat
Desc: - Fitur Detail investasi - Fitur Proses investasi - Fitur upload bukti trnsfer # No issue
This commit is contained in:
8
src/app/dev/investasi/detail/[id]/layout.tsx
Normal file
8
src/app/dev/investasi/detail/[id]/layout.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import { LayoutDetailInvestasi } from "@/app_modules/investasi";
|
||||
import React from "react";
|
||||
|
||||
export default async function Layout({children}: {children: React.ReactNode}) {
|
||||
return<>
|
||||
<LayoutDetailInvestasi>{children}</LayoutDetailInvestasi>
|
||||
</>
|
||||
}
|
||||
7
src/app/dev/investasi/detail/[id]/page.tsx
Normal file
7
src/app/dev/investasi/detail/[id]/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { DetailInvestasi } from "@/app_modules/investasi";
|
||||
|
||||
export default async function Page() {
|
||||
return<>
|
||||
<DetailInvestasi/>
|
||||
</>
|
||||
}
|
||||
Reference in New Issue
Block a user