const Component = () => { const { height, width } = useWindowDimensions(); return ( <div> width: {width} ~ height: {height} </div> ); }