/** * External dependencies */ import { Button } from '@wordpress/components'; import { __ } from '@wordpress/i18n'; /** * Internal dependencies */ import TimerImage from './timer.svg'; import AddTaxRates from './illustrations/add-tax-rates.js'; const TaxHeader = ( { task, goToTask } ) => { return (

{ __( 'Next up, add your tax rates', 'woocommerce-admin' ) }

{ task.content }

Timer{ ' ' } { task.time }

); }; export default TaxHeader;