@rnw-community/react-native-payments
Version:
Accept Payments with Apple Pay and Android Pay using the Payment Request API.
8 lines • 321 B
JavaScript
import { withPlugins } from '@expo/config-plugins';
import { withApplePay } from './with-apple-pay';
import { withGooglePay } from './with-google-pay';
export const withPayments = (config, props) => withPlugins(config, [
[withApplePay, props],
[withGooglePay, props],
]);
//# sourceMappingURL=with-payments.js.map