# extendify/3.0.4/src/Launch/state/factory.js

Extendify, version 3.0.4. 6 lines.

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

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

export const pageState = (name, dataCb) =>
	create(devtools(dataCb, { name: `Extendify Launch ${name}` }));

```
