Hex Core JS
    Preparing search index...

    Function useQueryState

    • Provides an interface for interacting with the query state (used in the URL's query string).

      Returns {
          getItem: <T = any>(key: string, filterType?: TypeFilter<T>) => T;
          hasItem: (key: string) => boolean;
          removeItem: (key: string) => void;
          setItem: (key: string, value: any) => void;
      }