I have a parent component(A) and 2 children components(B,C). The parent component contains the basic layout of the page, which doesn't change across all the layouts. I need to swap the contents in the middle of the page when the user select different button.
Step 1: Click button from parent component A --> refresh to B Step 2: User click on button from child component B --> refresh to C
Since I have to be persistent to keep the basic layout from my component A, what are some ways to approach Step 2?