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, listData, }: { selected: (string | number)[]; setSelected: (value: (string | number)[]) => void; setOpenDrawerParticipant: (value: boolean) => void; listData: any[]; }) { return ( *{" "} Pilih user yang akan menjadi tim proyek anda {listData?.map((item: any, index: any) => ( Username setOpenDrawerParticipant(true)} /> ))} ); }