Код: Выделить всё
.main-div {
width: 500px;
height: 400px;
border: 1px solid #000;
resize: both;
overflow: hidden;
}
< /code>
и некоторый компонент реагирования: < /p>
import React, { useState } from "react";
export const SomeComponent = () => {
const [width, setWidth] = useState();
const [height, setHeight] = useState();
return (
Block width: {width}, height: {height}
)
}
Подробнее здесь: https://stackoverflow.com/questions/732 ... n-react-js
Мобильная версия