import React from 'react'; import { Button, Card, Modal } from 'react-bootstrap'; import CollectionDropZone from './CollectionDropZone'; function CollectionSelector({ modalView, closeModal, collectionLatestFile, showProgress, }) { const CollectionIcons = collectionLatestFile?.map((item) => ( {item.collectionName} )); return ( Select/Click on Collection to upload {CollectionIcons} ); } export default CollectionSelector;