import React from 'react' class App extends React.Component { constructor() { super() this.divRef = React.createRef() this.state = { refHeight: 0, } } componentDidMount() { const refHeight = this.divRef.current.clientHeight this.setState({ refHeight }) } render() { const { refHeight } = this.state return (

DOM Ref test using 9.2.0

{`this component is ${refHeight}px tall`}
) } } export default App