Angular Design pattern: State management with URL params
The suggested mechanism of dealing with state in Angular is: Pass the state to a component from previous using @Input directive. OR Maintain the state in a store which is decoupled from components. You...