/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { useEmitResponse, useExpressPaymentMethods, } from '@woocommerce/base-hooks'; import { StoreNoticesProvider } from '@woocommerce/base-context'; /** * Internal dependencies */ import ExpressPaymentMethods from '../express-payment-methods'; import './style.scss'; const CartExpressPayment = () => { const { paymentMethods, isInitialized } = useExpressPaymentMethods(); const { noticeContexts } = useEmitResponse(); if ( ! isInitialized || ( isInitialized && Object.keys( paymentMethods ).length === 0 ) ) { return null; } return ( <>
{ /* translators: Shown in the Cart block between the express payment methods and the Proceed to Checkout button */ } { __( 'Or', 'woo-gutenberg-products-block' ) }
); }; export default CartExpressPayment;