Forward ref downstream
How can I forward a HTMLElement reference to a downstream component? i.e:
so that I can use the div inside of MyComponent
so that I can use the div inside of MyComponent
<div ref={theDiv}>
<MyComponent refToTheDiv={theDiv}/>
</div>