I have a main parent component in angular that contains next and back button. The child components are 3-4 sections.
In a simpler words, this is a step wizard. When the first step which contains a form is filled and I navigate to the second section, the route changes and it loads a new component.
When I click back again i need to maintain data of the form without sending it to server using state management.
Can I achieve this by using angular and ngrx? Does ngrx have any solution on how to implement this in angular/ngrx?