import { NoticeBanner } from '@automattic/components'; import { Button } from '@wordpress/components'; import { useTranslate } from 'i18n-calypso'; export const ReportUnavailable = ( { isLaunching, onLaunchSiteClick, ctaText, }: { isLaunching: boolean; onLaunchSiteClick(): void; ctaText: string; } ) => { const translate = useTranslate(); return ( { ctaText } , ] } > { translate( 'Performance statistics are only available for public sites.' ) } ); };