mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 14:57:26 +08:00
16 lines
444 B
JavaScript
16 lines
444 B
JavaScript
import ApplePayPreviewButtonManager from './Preview/ApplePayPreviewButtonManager';
|
|
|
|
/**
|
|
* Accessor that creates and returns a single PreviewButtonManager instance.
|
|
*/
|
|
const buttonManager = () => {
|
|
if ( ! ApplePayPreviewButtonManager.instance ) {
|
|
ApplePayPreviewButtonManager.instance =
|
|
new ApplePayPreviewButtonManager();
|
|
}
|
|
|
|
return ApplePayPreviewButtonManager.instance;
|
|
};
|
|
|
|
// Initialize the preview button manager.
|
|
buttonManager();
|