react-native-plaid-link-sdk
Version:
React Native Plaid Link SDK (New Architecture & Expo)
8 lines • 566 B
JavaScript
import { requireNativeViewManager } from "expo-modules-core";
import * as React from "react";
const NativeView = requireNativeViewManager("ReactNativePlaidLinkSdk");
export function PlaidEmbeddedSearchView(props) {
const { onSuccess, onExit, onEvent, onLoad, ...restProps } = props;
return (<NativeView {...restProps} onSuccess={(event) => onSuccess?.(event.nativeEvent)} onExit={(event) => onExit?.(event.nativeEvent)} onEvent={(event) => onEvent?.(event.nativeEvent)} onLoad={(event) => onLoad?.()}/>);
}
//# sourceMappingURL=PlaidEmbeddedSearchView.js.map