import { useState } from '@wordpress/element'; import useGooglepayApiToGenerateButton from '../hooks/useGooglepayApiToGenerateButton'; import usePayPalScript from '../hooks/usePayPalScript'; import useGooglepayScript from '../hooks/useGooglepayScript'; import useGooglepayConfig from '../hooks/useGooglepayConfig'; const GooglepayButton = ( { namespace, buttonConfig, ppcpConfig, buttonAttributes, } ) => { const [ componentFrame, setComponentFrame ] = useState( null ); const isPayPalLoaded = usePayPalScript( namespace, ppcpConfig ); const isGooglepayLoaded = useGooglepayScript( componentFrame, buttonConfig, isPayPalLoaded ); const googlepayConfig = useGooglepayConfig( namespace, isGooglepayLoaded ); const { button, containerStyles } = useGooglepayApiToGenerateButton( componentFrame, namespace, buttonConfig, ppcpConfig, googlepayConfig, buttonAttributes ); return ( <>