Angular - Signals
What is the error in this Angular component code?
export class SampleComponent {
count = signal(0);
increment() {
this.count = this.count() + 1;
}
}