/** * External dependencies */ import React from 'react'; import { __ } from '@wordpress/i18n'; export const ModalContentLayoutWithTitle = ( { children, }: { children: React.ReactNode; } ) => (

{ __( 'Manage orders and track sales in real-time with the free mobile app', 'woocommerce' ) }

{ children }
{ __( 'The WooCommerce Mobile App is available on iOS and Android', 'woocommerce' ) }
);