# extendify/3.1.6/src/AutoLaunch/auto-launch.js

Extendify, version 3.1.6. 11 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.1.6/code/src/AutoLaunch/auto-launch.js
- Raw: https://pluginprobe.com/plugins/extendify/3.1.6/raw/src/AutoLaunch/auto-launch.js
- Modified: 2026-02-26T23:48:52+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/extendify/3.1.6/code/src/AutoLaunch/auto-launch.js#L10-L20`.

```javascript
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 />);
});

```
