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