import { CabinetSection } from '@/widgets/cabinet/lib/types'; import { create } from 'zustand'; type CabinetNavZustand = { navItem: CabinetSection; setNavItem: (item: CabinetSection) => void; }; export const useCabinetNav = create((set) => ({ navItem: 'dashboard', setNavItem: (item: CabinetSection) => set({ navItem: item }), }));