/** * External dependencies */ import { __ } from '@wordpress/i18n'; const isConversionPossible = () => { return false; }; const getDescription = () => { return __( 'This block represents the classic template used to display the order confirmation. The actual rendered template may appear different from this placeholder.', 'woo-gutenberg-products-block' ); }; const getSkeleton = () => { return (

{ __( 'Order received', 'woo-gutenberg-products-block' ) }

{ __( 'Thank you. Your order has been received.', 'woo-gutenberg-products-block' ) }

{ __( 'Order details', 'woo-gutenberg-products-block' ) }

{ __( 'Product', 'woo-gutenberg-products-block' ) } { __( 'Total', 'woo-gutenberg-products-block' ) }
Sample Product{ ' ' } × 2 { ' ' } $20.00
{ __( 'Subtotal', 'woo-gutenberg-products-block' ) } : $20.00
{ __( 'Total', 'woo-gutenberg-products-block' ) } : $20.00

{ __( 'Billing address', 'woo-gutenberg-products-block' ) }

123 Main St
New York, NY 10001
United States (US)

{ __( 'Shipping address', 'woo-gutenberg-products-block' ) }

123 Main St
New York, NY 10001
United States (US)
); }; export { isConversionPossible, getDescription, getSkeleton };