Skip to content

Commit

Permalink
Use SetupPublicationScreen in SetupPublicationPendingVerification.
Browse files Browse the repository at this point in the history
  • Loading branch information
nfmohit committed Jul 21, 2022
1 parent 6064782 commit 52caa90
Showing 1 changed file with 33 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,40 @@
* limitations under the License.
*/

/**
* WordPress dependencies
*/
import { __ } from '@wordpress/i18n';

/**
* Internal dependencies
*/
import Link from '../../../../../js/components/Link';
import { SetupPublicationScreen } from '../common';

export default function SetupPublicationPendingVerification() {
return (
<div>
TODO: UI for publication pending verification -
SetupPublicationPendingVerification
</div>
<SetupPublicationScreen
title={ __(
'Reviewing your account application',
'google-site-kit'
) }
description={ __(
'We received your request to create a Thank with Google account. Check again for updates to your status.',
'google-site-kit'
) }
>
<Link
href="https://publishercenter.google.com/"
external={ true }
aria-label={ __(
'Check your status on Thank with Google Publisher Center',
'google-site-kit'
) }
hideExternalIndicator={ true }
>
{ __( 'Check your status', 'google-site-kit' ) }
</Link>
</SetupPublicationScreen>
);
}

0 comments on commit 52caa90

Please sign in to comment.