PATH:
home
/
bkunreyz
/
ezdatarecovery.net
/
wp-content
/
plugins
/
extendify
/
src
/
PageCreator
/
state
import { create } from 'zustand'; import { persist } from 'zustand/middleware'; export const usePageDescriptionStore = create( persist( (set) => ({ description: null, setDescription: (description) => set({ description }), reset: () => set({ description: null }), }), { name: `extendify-page-creator-page-description-cache-${window.extSharedData.siteId}`, }, ), );
[-] user.js
[edit]
[-] cache.js
[edit]
[-] pages.js
[edit]
[-] global.js
[edit]
[+]
..
[-] plugins-cache.js
[edit]