Review Investasi

# feat
- Ubah status ke review dan sebaliknya
- Lihat dokumen, prospektus, dan berita di review status
### no issue
This commit is contained in:
2023-11-09 13:46:56 +08:00
parent 14c0fb4e21
commit 64aac72b5d
67 changed files with 269642 additions and 193 deletions

View File

@@ -1,7 +1,11 @@
import { DetailPropektus } from "@/app_modules/investasi";
import getOneInvestasiById from "@/app_modules/investasi/fun/get_one_investasi_by_id";
export default async function Page({params}:{params: {id: string}}) {
const dataInvestasi = await getOneInvestasiById(params.id)
export default async function Page(params:any) {
return<>
<DetailPropektus/>
<DetailPropektus dataInvestasi={dataInvestasi as any}/>
</>
}