woocommerce/plugins/woocommerce-admin/client/homescreen/mobile-app-modal/components/InstallMobileAppInfo.tsx

28 lines
559 B
TypeScript
Raw Normal View History

/**
* External dependencies
*/
import { __ } from '@wordpress/i18n';
/**
* Internal dependencies
*/
import MobileQRCode from '../illustrations/woo-mobile-download-qrcode.svg';
export const InstallMobileAppInfo = () => {
return (
<div>
<img
src={ MobileQRCode }
alt={ __( 'Download WooCommerce mobile app', 'woocommerce' ) }
width="100"
/>
<p>
{ __(
'Scan the code above to download the WooCommerce mobile app, or visit woocommerce.com/mobile from your mobile device.',
'woocommerce'
) }
</p>
</div>
);
};