/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { Notice, ExternalLink } from '@wordpress/components'; import { ADMIN_URL } from '@woocommerce/settings'; /** * Internal dependencies */ import './editor.scss'; export function NoPaymentMethodsNotice() { const noticeContent = __( 'Your store does not have any payment methods that support the Checkout block. Once you have configured a compatible payment method it will be displayed here.', 'woo-gutenberg-products-block' ); return (
{ noticeContent }{ ' ' } { __( 'Configure Payment Methods', 'woo-gutenberg-products-block' ) }
); }