| import { ChangeDetectionStrategy, Component } from '@angular/core' | |
| import { SimpleExampleComponent } from './components/simple-example.component' | |
| ({ | |
| selector: 'app-root', | |
| changeDetection: ChangeDetectionStrategy.OnPush, | |
| imports: [SimpleExampleComponent], | |
| template: `<simple-example />`, | |
| }) | |
| export class AppComponent {} | |