2023-10-03 08:08:26 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
2023-10-05 02:59:04 +00:00
|
|
|
import { QRCodeSVG } from 'qrcode.react';
|
2023-10-03 08:08:26 +00:00
|
|
|
|
2023-10-03 08:19:15 +00:00
|
|
|
export const MobileAppInstallationInfo = () => {
|
2023-10-03 08:08:26 +00:00
|
|
|
return (
|
|
|
|
<div>
|
2023-10-05 02:59:04 +00:00
|
|
|
<QRCodeSVG
|
|
|
|
value={
|
2024-04-09 08:50:15 +00:00
|
|
|
'https://woocommerce.com/mobile/?utm_source=wc_onboarding_mobile_task'
|
2023-10-05 02:59:04 +00:00
|
|
|
}
|
|
|
|
size={ 140 }
|
2023-10-03 08:08:26 +00:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|