Angular - State Management
What is wrong with this Angular component code snippet that tries to avoid NgRx?
export class ExampleComponent {
state = { value: 0 };
increment() {
this.state.value++;
}
}{{ state.value }}
