import { AvatarCustom, BaseBox, CheckboxCustom, CheckboxGroup, Grid, StackCustom, TextCustom } from "@/components"; import { ICON_SIZE_SMALL } from "@/constants/constans-value"; import { MaterialIcons } from "@expo/vector-icons"; import { View } from "react-native"; export default function Collaboration_ProjectMainSelectedSection({ selected, setSelected, setOpenDrawerParticipant, }: { selected: (string | number)[]; setSelected: (value: (string | number)[]) => void; setOpenDrawerParticipant: (value: boolean) => void; }) { return ( *{" "} Pilih user yang akan menjadi tim proyek anda {Array.from({ length: 5 }).map((_, index) => ( Username setOpenDrawerParticipant(true)} /> ))} ); }