# extendify/3.1.5/src/Launch/launch.js

Extendify, version 3.1.5. 10 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.1.5/code/src/Launch/launch.js
- Raw: https://pluginprobe.com/plugins/extendify/3.1.5/raw/src/Launch/launch.js
- Modified: 2026-02-18T22:27:14+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.5/code/src/Launch/launch.js#L10-L20`.

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

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

```
