import React from 'react'; import { Alert, Modal, ProgressBar } from 'react-bootstrap'; import constants from 'utils/strings/constants'; export default function UploadProgress({ fileCounter, uploadStage, now, ...props }) { return ( Uploading Files {now === 100 ? ( {constants.UPLOAD[3]} ) : ( <> {constants.UPLOAD[uploadStage]}{' '} {fileCounter?.total != 0 ? `${fileCounter?.current} ${constants.OF} ${fileCounter?.total}` : ''} )} ); }