File size: 243 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
import { createElement } from 'react';
import PaymentMethodsComponent from 'calypso/me/purchases/payment-methods/main';
export function paymentMethods( context, next ) {
context.primary = createElement( PaymentMethodsComponent );
next();
}
|