/** * External dependencies */ import { Button } from '@wordpress/components'; import { __ } from '@wordpress/i18n'; /** * Internal dependencies */ import TimerImage from './timer.svg'; import { WC_ASSET_URL } from '../../utils/admin-settings'; const ShippingHeader = ( { task, goToTask } ) => { return (
{

{ __( 'Set up shipping for your store', 'woocommerce' ) }

{ __( 'Choose where and how you will ship your products, select shipping methods, and add fixed or calculated rates.', 'woocommerce' ) }

Timer{ ' ' } { task.time }

); }; export default ShippingHeader;