# extendify/3.1.1/src/Launch/state/Global.js

Extendify, version 3.1.1. 9 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.1.1/code/src/Launch/state/Global.js
- Raw: https://pluginprobe.com/plugins/extendify/3.1.1/raw/src/Launch/state/Global.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/3.1.1/code/src/Launch/state/Global.js#L10-L20`.

```javascript
import { create } from 'zustand';
import { devtools } from 'zustand/middleware';

const store = () => ({
	generating: false,
});
const withDevtools = devtools(store, { name: 'Extendify Launch Globals' });
export const useGlobalStore = create(withDevtools);

```
