/** * Internal dependencies */ import { paypalSvg } from './paypal'; import { ccSvg } from './cc'; const PaypalActivePaymentMethod = () => { return (

This is where paypal payment method stuff would be.

); }; const CreditCardActivePaymentMethod = () => { return (

This is where cc payment method stuff would be.

); }; export const paypalPaymentMethod = { id: 'paypal', label: , stepContent:
Billing steps
, activeContent: , canMakePayment: Promise.resolve( true ), ariaLabel: 'paypal payment method', }; export const ccPaymentMethod = { id: 'cc', label: , stepContent: null, activeContent: , canMakePayment: Promise.resolve( true ), ariaLabel: 'credit-card-payment-method', };