Here is the component hierarchy I have.
<Parent>
    <Child1>
        <Child2>
        </Child2>
    </Child1>
<Parent>
In Child2 component, there is a function called handlePatch(). I need to call it from Parent component but not sure how to do it. What is the best approach for this?
Thanks.
 
    