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 = [ 2018, 2017, 2016, 2015, 2014, 2013, ]; constructor() { } ngOnInit() { } }