UNPKG

@reactivers/use-global-state

Version:

Global State in React with hooks and providers

7 lines (6 loc) 183 B
interface IUseGlobalState { globalState: Record<string, any>; setGlobalState: any; } declare const useGlobalState: () => IUseGlobalState; export default useGlobalState;