Add: - screens/Invesment/ComponentBoxOnBottomDetail.tsx - screens/Invesment/ButtonInvestasiSection.tsx - app/(application)/(user)/investment/[id]/investor.tsx - app/(application)/(user)/investment/[id]/(news)/list-of-news.tsx Fix: - screens/Invesment/BoxDetailDataSection.tsx - app/(application)/(user)/investment/[id]/[status]/detail.tsx - app/(application)/(user)/_layout.tsx ## No Issue
22 lines
493 B
TypeScript
22 lines
493 B
TypeScript
import {
|
|
AvatarUsernameAndOtherComponent,
|
|
BoxWithHeaderSection,
|
|
TextCustom,
|
|
ViewWrapper,
|
|
} from "@/components";
|
|
|
|
export default function InvestmentInvestor() {
|
|
return (
|
|
<>
|
|
<ViewWrapper>
|
|
{Array.from({ length: 10 }).map((_, index) => (
|
|
<BoxWithHeaderSection key={index}>
|
|
<AvatarUsernameAndOtherComponent />
|
|
<TextCustom bold>Rp. 7.000.000</TextCustom>
|
|
</BoxWithHeaderSection>
|
|
))}
|
|
</ViewWrapper>
|
|
</>
|
|
);
|
|
}
|