import { NoticeBanner } from '@automattic/components'; import { Button } from '@wordpress/components'; import { useTranslate } from 'i18n-calypso'; export const ReportError = ( { onRetestClick }: { onRetestClick(): void } ) => { const translate = useTranslate(); return ( { translate( 'Re-run test' ) } , ] } > { translate( 'An error occurred while testing your site. Try running the test again or contact support if the error persists.' ) } ); };