File "auto-launch.js"
Full Path: /home/shadsolw/public_html/wp-content/plugins/extendify/src/AutoLaunch/auto-launch.js
File size: 334 bytes
MIME-type: text/x-java
Charset: utf-8
import { LaunchPage } from '@auto-launch/LaunchPage';
import { createRoot } from '@wordpress/element';
import '@auto-launch/auto-launch.css';
requestAnimationFrame(() => {
const launch = document.getElementById('extendify-auto-launch-page');
if (!launch) return;
const root = createRoot(launch);
root.render(<LaunchPage />);
});