/** * External dependencies */ import interpolateComponents from '@automattic/interpolate-components'; import { Button } from '@wordpress/components'; import { __ } from '@wordpress/i18n'; interface EmailSentProps { returnToSendLinkPage: () => void; } export const EmailSentPage: React.FC< EmailSentProps > = ( { returnToSendLinkPage: returnToSendLinkPage, } ) => { return (

{ __( 'Check your email!', 'woocommerce' ) }

{ __( 'We just sent you the magic link. Open it on your mobile device and follow the instructions.', 'woocommerce' ) }
{ __( 'DIDN’T GET IT?', 'woocommerce' ) }
{ interpolateComponents( { mixedString: __( 'Check your spam/junk email folder or {{ sendAnotherLink /}}.', 'woocommerce' ), components: { sendAnotherLink: ( ), }, } ) }
); };