import React, { type JSX } from 'react'; import { Progress } from 'reactstrap'; type Props = { header: string, currentCount: number, totalCount: number, isInProgress?: boolean, } const LabeledProgressBar = (props: Props): JSX.Element => { const { header, currentCount, totalCount, isInProgress, } = props; const progressingColor = isInProgress ? 'info' : 'success'; return ( <>