Angular - Performance Optimization
Given this Angular component snippet, what will be the effect on performance?
@Component({
selector: 'app-sample',
changeDetection: ChangeDetectionStrategy.Default
})
export class SampleComponent {
data = [1, 2, 3];
}
