/** * 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 StoreDetailsHeader = ( { task, goToTask } ) => { return (
{

{ __( 'First, tell us about your store', 'woocommerce' ) }

{ __( "Get your store up and running in no time. Add your store's address to set up shipping, tax and payments faster.", 'woocommerce' ) }

Timer{ ' ' } { __( '2 minutes', 'woocommerce' ) }

); }; export default StoreDetailsHeader;