| 1 | import { create } from 'zustand'; |
| 2 | |
| 3 | interface SidebarStore { |
| 4 | isOpen: boolean; |
| 5 | toggle: () => void; |
| 6 | } |
| 7 | |
| 8 | export const useSidebar = create<SidebarStore>((set: any) => ({ |
| 9 | isOpen: true, |
nothing calls this directly
no outgoing calls
no test coverage detected