A hook to track the window size and update on resize events.
- None
windowSize
(object
): An object containingwidth
andheight
of the window.
import useWindowSize from "./useWindowSize"
export default function WindowSizeComponent() {
const { width, height } = useWindowSize()
return (
<div>
{width} x {height}
</div>
)
}