File "launch.js"

Full Path: /home/leadltht/fastlinkinternet.com/admin/wp-content/wp-content/wp-content/plugins/extendify/src/Launch/launch.js
File size: 276 bytes
MIME-type: text/x-java
Charset: utf-8

import { render } from '@shared/lib/dom';
import { LaunchPage } from '@launch/LaunchPage';
import '@launch/launch.css';

requestAnimationFrame(() => {
	const launch = document.getElementById('extendify-launch-page');
	if (!launch) return;
	render(<LaunchPage />, launch);
});