@rnw-community/react-native-payments
Version:
React Native Payments
12 lines (10 loc) • 310 B
JavaScript
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;