# extendify/3.2.1/src/AutoLaunch/hooks/useNeedsTheme.js

Extendify, version 3.2.1. 15 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.2.1/code/src/AutoLaunch/hooks/useNeedsTheme.js
- Raw: https://pluginprobe.com/plugins/extendify/3.2.1/raw/src/AutoLaunch/hooks/useNeedsTheme.js
- Modified: 2026-09-09T18:23:40+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.2.1/code/src/AutoLaunch/hooks/useNeedsTheme.js#L10-L20`.

```javascript
import { launchStrings } from '@auto-launch/strings';

export const useNeedsTheme = () => {
	const strings = launchStrings();

	return {
		title: strings.needsThemeTitle,
		body: strings.needsThemeBody,
		action: {
			label: strings.needsThemeAction,
			href: `${window.extSharedData.adminUrl}theme-install.php?theme=extendable`,
		},
	};
};

```
