import {motion} from 'framer-motion'; import {t} from 'sentry/locale'; import ConfigStore from 'sentry/stores/configStore'; import testableTransition from 'sentry/utils/testableTransition'; import Wrapper from 'sentry/views/relocation/components/wrapper'; import type {StepProps} from './types'; export function InProgress(props: StepProps) { const userIdentity = ConfigStore.get('userIdentity'); return ( {t('Your relocation is under way!')}

{`Your relocation is currently being processed - we\'ll email the latest updates to ${userIdentity.email}. If you don't hear back from us in 24 hours, please `} contact support.


UUID: {props.existingRelocationUUID}

); } export default InProgress;