????
| Current Path : /proc/self/root/home/arabianr/public_html/wp-content/plugins/extendify/src/Library/state/ |
| Current File : //proc/self/root/home/arabianr/public_html/wp-content/plugins/extendify/src/Library/state/cache.js |
import { create } from 'zustand';
import { persist } from 'zustand/middleware';
export const useCacheStore = create(
persist(
(set) => ({
categories: [],
setCategories: (categories) => set({ categories }),
}),
{ name: `extendify-library-cache-${window.extSharedData.siteId}` },
),
);