import { InvestorListItem } from "~/components/cards/modal-card"; import type { TokenResponse } from "~/types/api/proyek"; interface ThirdSectionProps { investors: TokenResponse[]; } export default function ThirdSection({ investors }: ThirdSectionProps) { return (

Penanam Modal

{investors && investors.length > 0 ? ( investors.map((investor, index) => ) ) : (

Belum ada penanam modal

)}
); }