20 lines
428 B
TypeScript
Raw Normal View History

2018-05-10 16:39:05 +02:00
import { Component, OnInit } from '@angular/core';
2018-05-11 10:46:27 +02:00
import { Title } from "@angular/platform-browser";
2018-05-10 16:39:05 +02:00
@Component({
selector: 'app-awardee-list',
templateUrl: './awardee-list.component.html',
styleUrls: ['./awardee-list.component.css']
})
export class AwardeeListComponent implements OnInit {
2018-05-11 10:46:27 +02:00
constructor(
private titleService: Title
) { }
2018-05-10 16:39:05 +02:00
ngOnInit() {
2018-05-11 10:46:27 +02:00
this.titleService.setTitle('Awardee list');
2018-05-10 16:39:05 +02:00
}
}