UNPKG

kushk-thawani-react-native-sdk

Version:

This is a new [**React Native**](https://reactnative.dev) project, bootstrapped using [`@react-native-community/cli`](https://github.com/react-native-community/cli).

9 lines (7 loc) 267 B
// PaymentGateway.js import {NativeModules} from 'react-native'; const {Paymentgateway} = NativeModules; const initiatePayment = async (price, selectedPayType) => { await Paymentgateway.initiatePayment(price, selectedPayType); }; export {initiatePayment};