UNPKG

@datalayer/core

Version:
17 lines (16 loc) 514 B
/* * Copyright (c) 2023-2025 Datalayer, Inc. * Distributed under the terms of the Modified BSD License. */ import { createStore } from 'zustand/vanilla'; import { useStore } from 'zustand'; export const organizationStore = createStore((set, get) => ({ organizations: [], updateOrganizations: (organizations) => set((state) => ({ organizations })), })); export function useOrganizationStore(selector) { return useStore(organizationStore, selector); } export default useOrganizationStore;