UNPKG

@adyen/react-native

Version:

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

11 lines (9 loc) 157 B
import { LINKING_ERROR } from './constants'; export const ModuleMock = new Proxy( {}, { get() { throw new Error(LINKING_ERROR); }, } );