pay-sdk-react
Version:
A cross-platform payment SDK for React, supporting Alipay, WeChat Pay, PayPal, Stripe, Payssion, and Airwallex, compatible with H5, PC, and App environments.
10 lines • 362 B
JavaScript
import Stripe from './stripe';
import StripePopup from './stripe-popup';
import StripeButton from './stripe-button';
import StripeModal from './stripe-modal';
export * from './interface';
var StripeComponent = Stripe;
StripeComponent.Button = StripeButton;
StripeComponent.Popup = StripePopup;
StripeComponent.Modal = StripeModal;
export default StripeComponent;