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

{ __( 'Add a way to get paid', 'woocommerce' ) }

{ __( 'Choose from fast & secure online and offline payment methods to make it easy for your customers to pay in your store.', 'woocommerce' ) }

Timer{ ' ' } { task.time }

); }; export default PaymentsHeader;