17 lines
480 B
TypeScript
17 lines
480 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={`/investment/${index + 1}/dokumen/file`}
|
|
/>
|
|
))}
|
|
</ViewWrapper>
|
|
);
|
|
}
|