????

Your IP : 216.73.217.111


Current Path : /proc/self/root/home/arabianr/public_html/wp-content/plugins/extendify/src/Shared/lib/
Upload File :
Current File : //proc/self/root/home/arabianr/public_html/wp-content/plugins/extendify/src/Shared/lib/dom.js

import { createRoot, render as renderDeprecated } from '@wordpress/element';

export const render = (component, node) => {
	if (typeof createRoot !== 'function') {
		renderDeprecated(component, node);
		return;
	}
	createRoot(node).render(component);
};