Technical Documentation
Change the screen size to see the effect.
() => { const { height, width } = useWindowSize(); return ( <p> Window height: {height}px<br/> Window width: {width}px </p> );}
Contents