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