MCPcopy
hub / github.com/langflow-ai/openrag / LoadingState

Interface LoadingState

frontend/stores/loadingStore.ts:3–6  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import { create } from "zustand";
2
3interface LoadingState {
4 loading: boolean;
5 setLoading: (loading: boolean) => void;
6}
7
8export const useLoadingStore = create<LoadingState>((set) => ({
9 loading: false,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected