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