File size: 338 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 |
import { ChangeDetectionStrategy, Component } from '@angular/core'
import { SimpleExampleComponent } from './components/simple-example.component'
@Component({
selector: 'app-root',
changeDetection: ChangeDetectionStrategy.OnPush,
imports: [SimpleExampleComponent],
template: `<simple-example />`,
})
export class AppComponent {}
|