Fix: - ComponentBoxOnBottomDetail: file route > /(file)/[id].tsx Feature: - app/(application)/(file)/ ## No Issue
17 lines
463 B
TypeScript
17 lines
463 B
TypeScript
import { ViewWrapper } from "@/components";
|
|
import Investment_BoxDetailDocument from "@/screens/Invesment/Document/RecapBoxDetail";
|
|
|
|
export default function InvestmentListOfDocument() {
|
|
return (
|
|
<ViewWrapper>
|
|
{Array.from({ length: 10 }).map((_, index) => (
|
|
<Investment_BoxDetailDocument
|
|
key={index}
|
|
title={`Judul Dokumen ${index + 1}`}
|
|
href={`/(file)/${index + 1}`}
|
|
/>
|
|
))}
|
|
</ViewWrapper>
|
|
);
|
|
}
|