UNPKG

react-screen-responsive-hooks

Version:

A simple React hooks kit for handling window size, breakpoints, orientation, and media queries in responsive layouts.

4 lines (3 loc) 124 B
type Breakpoint = "xs" | "sm" | "md" | "lg" | "xl" | "2xl"; export declare function useBreakpoint(): Breakpoint; export {};