OwlCyberSecurity - MANAGER
Edit File: control.js
import { createRoot } from '@wordpress/element'; import ContactComponent from './contact-component.js'; export const ContactControl = wp.customize.KadenceControl.extend( { renderContent: function renderContent() { let control = this; let root = createRoot( control.container[0] ); root.render( <ContactComponent control={ control } /> ); // ReactDOM.render( <ContactComponent control={ control } />, control.container[0] ); } } );