/** * External dependencies */ import { __ } from '@wordpress/i18n'; /** * Internal dependencies */ import { JetpackInstallationStepper } from '../components/JetpackInstallationStepper'; import { ModalContentLayoutWithTitle } from '../layouts/ModalContentLayoutWithTitle'; interface JetpackInstallStepperPageProps { isReturningFromWordpressConnection: boolean; sendMagicLinkHandler: () => void; } export const JetpackInstallStepperPage: React.FC< JetpackInstallStepperPageProps > = ( { isReturningFromWordpressConnection, sendMagicLinkHandler } ) => { return (

{ __( 'Run your store from anywhere in two easy steps.', 'woocommerce' ) }

); };