import React from 'react'; import PropTypes from 'prop-types'; import { withTranslation } from 'react-i18next'; import { Progress } from 'reactstrap'; const LabeledProgressBar = (props) => { const { header, currentCount, totalCount, errorsCount, isInProgress, } = props; const progressingColor = isInProgress ? 'info' : 'success'; return ( <>