# extendify/0.10.0/src/Onboarding/state/factory.js

Extendify, version 0.10.0. 6 lines.

- Page: https://pluginprobe.com/plugins/extendify/0.10.0/code/src/Onboarding/state/factory.js
- Raw: https://pluginprobe.com/plugins/extendify/0.10.0/raw/src/Onboarding/state/factory.js
- Modified: 2022-08-11T22:01:54+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/0.10.0/code/src/Onboarding/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}` }))

```
