UNPKG

@paypal/react-paypal-js

Version:

React components for the PayPal JS SDK

10 lines (8 loc) 550 B
import type { FC } from "react"; import type { ScriptProviderProps } from "../types"; /** This `<PayPalScriptProvider />` component takes care of loading the JS SDK `<script>`. It manages state for script loading so children components like `<PayPalButtons />` know when it's safe to use the `window.paypal` global namespace. Note: You always should use this component as a wrapper for `PayPalButtons`, `PayPalMarks`, `PayPalMessages` and `BraintreePayPalButtons` components. */ export declare const PayPalScriptProvider: FC<ScriptProviderProps>;