useWindowSize

provides the current size of the window on the user monitor

Demo

Resize your window

Width: 0px, Height: 0px

Usage

const { const width: numberwidth, const height: numberheight } = 
function useWindowSize(listenOrientation?: boolean): {
    width: number;
    height: number;
}
useWindowSize
()