aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_elements/loading/loading.component.ts
blob: 4dff0cdfce1a2804b7de9a93457507b838b7c16c (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 {
  }

}