26 lines
471 B
TypeScript
Raw Normal View History

2018-05-10 16:39:05 +02:00
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-judge-editor',
templateUrl: './judge-editor.component.html',
styleUrls: ['./judge-editor.component.css']
})
export class JudgeEditorComponent implements OnInit {
public displayedColumns = ['year', 'title'];
public judge = {
yearlyData: [
{
year: 2013,
title: 'Something something dark side',
}
]
};
constructor() {}
ngOnInit() {
}
}