25 lines
400 B
TypeScript
Raw Normal View History

2018-05-10 16:39:05 +02:00
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-awardee-editor',
templateUrl: './awardee-editor.component.html',
styleUrls: ['./awardee-editor.component.css']
})
export class AwardeeEditorComponent implements OnInit {
public years: Array<number> = [
2018,
2017,
2016,
2015,
2014,
2013,
];
constructor() { }
ngOnInit() {
}
}