I've created test blazor server app with structure like this:
<parent_component>
<child1_component/>
</parent_component>
Where:
<child1_component>
<child2_component/>
</child1_component>
And
<child2_component>
<child3_component/>
</child2_component>
How to receive event callback in parent_component sended by child3_component? Does structure of nested components make sense? Is it useful in 'real scenario' or should I use other structure?