32 lines
593 B
TypeScript
32 lines
593 B
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { useStoreCart } from '@woocommerce/base-context/hooks';
|
|
import classnames from 'classnames';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import { CartExpressPayment } from '../../../cart-checkout/payment-methods';
|
|
|
|
const Block = ( { className }: { className: string } ): JSX.Element | null => {
|
|
const { cartNeedsPayment } = useStoreCart();
|
|
|
|
if ( ! cartNeedsPayment ) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<div
|
|
className={ classnames(
|
|
'wc-block-cart__payment-options',
|
|
className
|
|
) }
|
|
>
|
|
<CartExpressPayment />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Block;
|