How to Create and Integrate a Custom Payment Option View in Checkout?
Create a New Component
src/views/checkout/steps/payment/options Add the Payment Option
src/views/checkout/steps/payment/index.tsximport ApplePay from './options/apple-pay';export const PaymentOptionViews: Array<CheckoutPaymentOption> = [
{
pk: 101,
slug: 'apple-pay',
payment_type: 'apple-pay',
view: ApplePay
}
]; Checkout Payment Option Interface
Field
Type
Required
Description
Last updated
Was this helpful?

