UNPKG

@thibault.sh/hooks

Version:

A comprehensive collection of React hooks for browser storage, UI interactions, and more

9 lines (7 loc) 238 B
/** * Hook that tracks state of a CSS media query * @param query - CSS media query string * @returns boolean indicating if the media query matches */ declare const useMediaQuery: (query: string) => boolean; export { useMediaQuery };