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

{ __( 'Make your store stand out', 'woocommerce' ) }

{ __( 'Add your logo, create a homepage, and start designing your store.', 'woocommerce' ) }

Timer{ ' ' } { task.time }

); }; export default AppearanceHeader;