UNPKG

@rnw-community/react-native-payments

Version:
12 lines (10 loc) 310 B
const { withPlugins } = require('@expo/config-plugins'); const { withApplePay } = require('./with-apple-pay'); const { withGooglePay } = require('./with-google-pay'); const withPayments = (config) => { return withPlugins(config, [ withApplePay, withGooglePay ]); }; module.exports = withPayments;