import React from 'react' const { registerPaymentMethod } = window.wc.wcBlocksRegistry const { savedCardsEnabled } = window.shift4CardSettings import { Shift4PaymentForm } from './blocks-form' import { Shift4ApplePay } from './blocks-apple-pay' registerPaymentMethod({ name: 'shift4_applepay', label: window.shift4ApplePaySettings.applePayTitle, edit:
Apple Pay (Shift4)
, // @ts-ignore content:Credit Card (Shift4)'
, canMakePayment: () => window.shift4CardSettings.enabled, ariaLabel: 'Shift4 Credit Card payment method', supports: { features: ['products'], showSavedCards: savedCardsEnabled === 'yes' ? true : false, showSaveOption: savedCardsEnabled === 'yes' ? true : false } })