/**
* Internal dependencies
*/
import { paypalSvg } from './paypal';
import { ccSvg } from './cc';
export const paypalPaymentMethod = {
id: 'paypal',
label: ,
stepContent:
Billing steps
,
activeContent: (
This is where paypal payment method stuff would be.
),
canMakePayment: Promise.resolve( true ),
ariaLabel: 'paypal payment method',
};
export const ccPaymentMethod = {
id: 'cc',
label: ,
stepContent: null,
activeContent: (
This is where cc payment method stuff would be.
),
canMakePayment: Promise.resolve( true ),
ariaLabel: 'credit-card-payment-method',
};