import { localizeUrl } from '@automattic/i18n-utils'; import { useTranslate } from 'i18n-calypso'; import { useSelector } from 'calypso/state'; import { getSelectedSite } from 'calypso/state/ui/selectors'; export default function PrivateSite() { const selectedSiteData = useSelector( getSelectedSite ); const siteSlug = selectedSiteData?.slug; const translate = useTranslate(); return ( <>
{ translate( 'Go to your WordPress.com dashboard and follow the steps below.' ) }
{ translate( 'Read more on how to launch your site {{a}}here{{/a}}. ', { components: { a: ( ), }, } ) }