import { Component, OnInit, ChangeDetectionStrategy } from '@angular/core'; @Component({ selector: 'fei-round', templateUrl: './round.component.html', styleUrls: ['./round.component.scss'], changeDetection: ChangeDetectionStrategy.OnPush }) export class RoundComponent implements OnInit { constructor() { } ngOnInit() { } }