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