import {createRoot} from '@wordpress/element'; import CampaignComments from './shared/components/CampaignComments'; const roots = document.querySelectorAll('[data-givewp-campaign-comments]'); if (roots) { roots.forEach((root) => { const attributes = root.getAttribute('data-attributes'); const secondaryColor = root.getAttribute('data-secondary-color'); return createRoot(root).render( ); }); }