aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_pages/test/test.component.ts
blob: b3c0d8cfb04685892bdb51972974baa368103eb4 (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-test',
  templateUrl: './test.component.html',
  styleUrls: ['./test.component.css']
})
export class TestComponent implements OnInit {

  constructor() { }

  ngOnInit(): void {
  }

}