25 lines
400 B
TypeScript
25 lines
400 B
TypeScript
|
|
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() {
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|