/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { Button } from '@wordpress/components'; import interpolateComponents from 'interpolate-components'; import { H } from '@woocommerce/components'; import { recordEvent } from '@woocommerce/tracks'; export const AutomatedTaxes = ( { isPending, onAutomate, onManual, onDisable, } ) => { return (
🎊 { __( 'Good news!', 'woocommerce-admin' ) }

{ interpolateComponents( { mixedString: __( '{{strong}}Jetpack{{/strong}} and {{strong}}WooCommerce Tax{{/strong}} ' + 'can automate your sales tax calculations for you.', 'woocommerce-admin' ), components: { strong: , }, } ) }

); };