Repository URL to install this package:
|
Version:
1.1.31 ▾
|
import CheckIconComponent from './check-icon-component.js';
export const CheckIconControl = wp.customize.KadenceControl.extend( {
renderContent: function renderContent() {
let control = this;
ReactDOM.render(
<CheckIconComponent control={control}/>,
control.container[0]
);
}
} );