aboutsummaryrefslogtreecommitdiff
path: root/src/app/components/loading/loading.component.ts
blob: e2034841239fd14c4f8037420f9d6f1228832821 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-loading',
  templateUrl: './loading.component.html',
  styleUrls: ['./loading.component.css']
})
export class LoadingComponent implements OnInit {

  constructor()
  { }

  ngOnInit(): void {
  }
}