/** * External dependencies */ import { __ } from '@wordpress/i18n'; import NoticeBanner from '@woocommerce/base-components/notice-banner'; /** * Internal dependencies */ import './style.scss'; /** * Render content when no payment methods are found depending on context. */ const NoPaymentMethods = () => { return ( { __( 'There are no payment methods available. This may be an error on our side. Please contact us if you need any help placing your order.', 'woo-gutenberg-products-block' ) } ); }; export default NoPaymentMethods;