/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { Button } from '@wordpress/components'; import interpolateComponents from '@automattic/interpolate-components'; import { H } from '@woocommerce/components'; import { recordEvent } from '@woocommerce/tracks'; /** * Internal dependencies */ import { SetupStepProps } from './setup'; export const AutomatedTaxes: React.FC< Pick< SetupStepProps, 'isPending' | 'onAutomate' | 'onManual' | 'onDisable' > > = ( { isPending, onAutomate, onManual, onDisable } ) => { return (
🎊 { __( 'Good news!', 'woocommerce' ) }

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

); };