import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-waiting-animation', templateUrl: './waiting-animation.component.html', styleUrls: ['./waiting-animation.component.scss'] }) export class WaitingAnimationComponent implements OnInit { constructor() { } ngOnInit() { } }