import { useTranslate } from 'i18n-calypso'; import { useSelector } from 'calypso/state'; import { getSelectedSite } from 'calypso/state/ui/selectors'; export default function BlazeDisabled() { const selectedSiteData = useSelector( getSelectedSite ); const adminUrl = selectedSiteData?.options?.admin_url; const translate = useTranslate(); return ( <>
{ translate( 'To get started, go to the Jetpack settings page and follow the steps below.' ) }