I have a parent component which has three other components, A B and C.
Each of these components has its own set of fields that can be saved. These are different object types. And now, when user clicks "Save", I want to trigger a save action in each of these components. Each of them has its own error handling, messaging etc.
How to handle it? At the moment I'm just using references, but according to this post (Call child method from parent) this is not encouraged. How to implement it in "React" way of thinking?