| 1 |
import { LaunchPage } from '@auto-launch/LaunchPage'; |
| 2 |
import { createRoot } from '@wordpress/element'; |
| 3 |
import '@auto-launch/auto-launch.css'; |
| 4 |
|
| 5 |
requestAnimationFrame(() => { |
| 6 |
const launch = document.getElementById('extendify-auto-launch-page'); |
| 7 |
if (!launch) return; |
| 8 |
const root = createRoot(launch); |
| 9 |
root.render(<LaunchPage />); |
| 10 |
}); |
| 11 |
|