20 lines
428 B
TypeScript
20 lines
428 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { Title } from "@angular/platform-browser";
|
|
|
|
@Component({
|
|
selector: 'app-awardee-list',
|
|
templateUrl: './awardee-list.component.html',
|
|
styleUrls: ['./awardee-list.component.css']
|
|
})
|
|
export class AwardeeListComponent implements OnInit {
|
|
|
|
constructor(
|
|
private titleService: Title
|
|
) { }
|
|
|
|
ngOnInit() {
|
|
this.titleService.setTitle('Awardee list');
|
|
}
|
|
|
|
}
|