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 can read a little about this state management using Redux here. Maintaining state in a store is preferable as compared to […]

Angular Design pattern: State management with URL params Read More ยป