/** * External dependencies */ import { render } from '@wordpress/element'; import { createSlotFill, SlotFillProvider } from '@wordpress/components'; import { PluginArea } from '@wordpress/plugins'; export const SETTINGS_SLOT_FILL_CONSTANT = '__EXPERIMENTAL__WcAdminSettingsSlots'; const { Slot } = createSlotFill( SETTINGS_SLOT_FILL_CONSTANT ); export const possiblyRenderSettingsSlots = () => { const slots = [ { id: 'wc_payments_settings_slotfill', scope: 'woocommerce-payments-settings', }, { id: 'wc_tax_settings_slotfill', scope: 'woocommerce-tax-settings' }, { id: 'wc_settings_slotfill', scope: 'woocommerce-settings' }, { id: 'wc_settings_general_site_visibility_slotfill', scope: 'woocommerce-settings', }, ]; slots.forEach( ( slot ) => { const slotDomElement = document.getElementById( slot.id ); if ( slotDomElement ) { render( <> , slotDomElement ); } } ); };