| 1 | import { create } from "zustand"; |
| 2 | |
| 3 | interface UIState { |
| 4 | isDragging: boolean; |
| 5 | setIsDragging: (dragging: boolean) => void; |
| 6 | } |
| 7 | |
| 8 | export const useUIStore = create<UIState>((set) => ({ |
| 9 | isDragging: false, |
nothing calls this directly
no outgoing calls
no test coverage detected