MCPcopy Create free account
hub / github.com/SyntaxUI/syntaxui / MountedStore

Interface MountedStore

src/components/ThemeToggle.tsx:27–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25// create zustand store:
26
27interface MountedStore {
28 mounted: boolean
29 setMounted: (mounted: boolean) => void
30}
31
32const useMountedStore = create<MountedStore>((set) => ({
33 mounted: false,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected