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

Extendify, version 1.17.1. 14 lines.

- Page: https://pluginprobe.com/plugins/extendify/1.17.1/code/src/Launch/launch.js
- Raw: https://pluginprobe.com/plugins/extendify/1.17.1/raw/src/Launch/launch.js
- Modified: 2023-10-11T02:07:34+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/1.17.1/code/src/Launch/launch.js#L10-L20`.

```javascript
import { render, createRoot } from '@wordpress/element';
import { LaunchPage } from '@launch/LaunchPage';
import './launch.css';

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

```
