import React from 'react'; import PropTypes from 'prop-types'; import { Trans, withTranslation } from 'react-i18next'; import { INSTALL_TOTAL_STEPS } from '../../helpers/constants'; const getProgressPercent = (step) => (step / INSTALL_TOTAL_STEPS) * 100; const Progress = (props) => (