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