UNPKG

@adyen/react-native

Version:

Wraps Adyen Checkout Drop-In and Components for iOS and Android for convenient use with React Native

12 lines (9 loc) 410 B
import { NativeModules } from 'react-native'; import type { AdyenActionComponent } from '../../core'; import { ModuleMock } from '../base/ModuleMock'; import { InstantWrapper } from './InstantWrapper'; export interface InstantModule extends AdyenActionComponent {} /** Generic Redirect component */ export const AdyenInstant: InstantModule = new InstantWrapper( NativeModules.AdyenInstant ?? ModuleMock );