@react-typed-hooks/use-window-size
v1.0.5
Published
React hook written in TypeScript
Downloads
283
Readme
useWindowSize
React hook that returns the window size. Updates on window resize and orientation change.
Installation
npm install @react-typed-hooks/use-window-size
Usage
import { useWindowSize } from "@react-typed-hooks/use-window-size";
const Demo = () => {
const size = useWindowSize();
return size ? (
<pre>JSON.stringify(size, null, 4)</pre>
) : (
<span>Size is null in a node like environment</span>
);
};
API
Types
interface Size {
height: number;
width: number;
}
interface UseWindowSizeOptions {
wait?: number;
}
function useWindowSize(options?: UseWindowSizeOptions): Size | null;
Options
wait
The amount of time to delay updating Size
after the orientation changes.
The amount of time to throttle between updating Size
when the window is resized.