Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
const panel = document.querySelector('.panel') const style = { height: `${panel.clientHeight}px` } // и навесить на элемент: <div className="panel" style={style}> <Outlet/> </div>
const [clientHeight, setClientHeight] = useState(null); const style = { height: clientHeight ? `${clientHeight}px` : 'auto' }; return ( <div style={style} ref={(ref) => setClientHeight(ref?.clientHeight ?? null)}> {children} </div> );