Sobes.tech
Middle+

Тавзеҳ диҳед, ки чӣ гуна масъала дар кодекси болоии компонент Angular вуҷуд дорад ва чӣ гуна онро ислоҳ кардан мумкин аст: ```typescript @Component({ selector: 'app-user', template: './user.component.html', stylesUrls: './user.component.scs', changeDetection: ChangeDetectionStrategy.OnPush, }) export class CmfUserComponent { users$: any; constructor() { const api = new BackendService(); this.users$ = api.getUsers(); } } ```