MCPcopy
hub / github.com/fccview/jotty / UIState

Interface UIState

app/_utils/ui-store.ts:3–6  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import { create } from "zustand";
2
3interface UIState {
4 isDragging: boolean;
5 setIsDragging: (dragging: boolean) => void;
6}
7
8export const useUIStore = create<UIState>((set) => ({
9 isDragging: false,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected