import React from 'react'; import PropTypes from 'prop-types'; import CardImgWrapper from '../CardImgWrapper'; import InfiniteLoadingIndicator from '../InfiniteLoadingIndicator'; const RowItem = ({ file, hasError, errorMessage, isUploading, onClick, originalIndex, }) => { const handleClick = () => { onClick(originalIndex); }; return (
{errorMessage || file.name}