16 lines
284 B
TypeScript
16 lines
284 B
TypeScript
|
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'app-judge-list',
|
||
|
|
templateUrl: './judge-list.component.html',
|
||
|
|
styleUrls: ['./judge-list.component.css']
|
||
|
|
})
|
||
|
|
export class JudgeListComponent implements OnInit {
|
||
|
|
|
||
|
|
constructor() { }
|
||
|
|
|
||
|
|
ngOnInit() {
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|