import { useI18n } from '@wordpress/react-i18n'; import { PerformanceReportLoadingProgress } from 'calypso/performance-profiler/pages/loading-screen/progress'; export const PerformanceReportLoading = ( { isSavedReport, pageTitle, isLoadingPages, }: { isSavedReport: boolean; pageTitle: string; isLoadingPages?: boolean; } ) => { const { __ } = useI18n(); return (
{ ! isLoadingPages &&

{ __( 'Testing your site may take around 30 seconds.' ) }

}
); };