I'm wondering how deep you can pass forwardRef down in a nested app, and how would someone pass it down?
Something like this:
<Parent>
<Child>
....
</Child>
</Parent>
<Child>
<GrandChild>
....
</GrandChild>
</Child>
<GrandChild>
<GreatGrandChild>
....
</GreatGrandChild>
</GrandChild>
<GreatGrandChild>
....
</GreatGrandChild>
and then use it in GreatGrandChild component or passing down the ref of and element in Parent down to GreatGrandChild