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

  constructor() { }

  ngOnInit(): void {
  }

}