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