Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 567 Bytes

useWindowSize.md

File metadata and controls

32 lines (21 loc) · 567 Bytes

useWindowSize

A hook to track the window size and update on resize events.

Arguments

  • None

Returns

  • windowSize (object): An object containing width and height of the window.

Hooks Involved

How to Use

import useWindowSize from "./useWindowSize"

export default function WindowSizeComponent() {
    const { width, height } = useWindowSize()

    return (
        <div>
            {width} x {height}
        </div>
    )
}