This is a snippet of my code in a component. I'm trying to make a component whose height will change when the prop changes. How to fix the error? Property 'style' does not exist on type 'MutableRefObject'
const bottom = useRef(null)
useEffect(() => {
active ?
bottom.style.maxHeight = '120px'
:
bottom.style.maxHeight = '0px'
}, [active])
return (
<div ref={bottom}></div>
)