Cómo obtener el tamaño de la ventana en React JS
const Component = () => {
const { height, width } = useWindowDimensions();
return (
<div>
width: {width} ~ height: {height}
</div>
);
}
Difficult Dragonfly