import { Box } from '@rocket.chat/fuselage'; import React from 'react'; import { useTranslation } from '../../contexts/TranslationContext'; export function StepHeader({ number, title }) { const t = useTranslation(); return {t('Step')} {number} {title} ; }