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