File "factory.js"
Full path: /home/disqkgca/aqanet.org/wp-content/plugins/extendify/src/Draft/state/factory.js
File size: 189 B
MIME-type: text/x-java
Charset: utf-8
import { create } from 'zustand';
import { devtools } from 'zustand/middleware';
export const pageState = (name, dataCb) =>
create(devtools(dataCb, { name: `Extendify Draft ${name}` }));