b2b/src/app/app.component.ts

11 lines
267 B
TypeScript

import { ChangeDetectionStrategy, Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css'],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class AppComponent {
}