ShiftSync/web/components/stores/useLocalStore.js

9 lines
212 B
JavaScript
Raw Permalink Normal View History

import { create } from 'zustand';
export const useLocalStore = create((set) => ({
user: null,
setUser: (user) => set({ user }),
department: null,
setDepartment: (department) => set({ department }),
}));