import React from 'react'; import { Trans } from 'react-i18next'; import { INSTALL_TOTAL_STEPS } from '../../helpers/constants'; const getProgressPercent = (step: number) => (step / INSTALL_TOTAL_STEPS) * 100; type Props = { step: number; }; export const Progress = ({ step }: Props) => (
install_step {step}/{INSTALL_TOTAL_STEPS}
);