STRATO-apps/wordpress_03/app/wp-content/themes/blocksy/admin/dashboard/static/js/main.js
SHA-256: fab4582e6a7d31b6e795fb50ae021475f48512633bc820b820bba840cbcd6ca7
import { createElement, createRoot } from '@wordpress/element'
import Dashboard from './Dashboard'
document.addEventListener('DOMContentLoaded', () => {
if (!ctDashboardLocalizations.plugin_data) {
return
}
if (document.getElementById('ct-dashboard')) {
const root = createRoot(document.getElementById('ct-dashboard'))
root.render(<Dashboard />)
}
})