File: /home/globfdxw/www/wp-content/plugins/give/src/Campaigns/Blocks/CampaignComments/resources/app.tsx
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(
<CampaignComments attributes={JSON.parse(attributes)} secondaryColor={secondaryColor} />
);
});
}