import React from 'react'; import { Alert, Modal, ProgressBar } from 'react-bootstrap'; export default function UploadProgress({ fileCounter, uploadStage, now, ...props }) { return ( Uploading Files {now == 100 ? ( Upload Completed ) : ( <> {uploadStage} {fileCounter?.current} of {fileCounter?.total} )} ); }