You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
448 B

import { Component, Input } from '@angular/core';
import { SeasonWeekEntry } from '../../models/season';
@Component({
selector: 'app-weekly-standings-table',
templateUrl: './weekly-standings-table.component.html',
styleUrls: ['./weekly-standings-table.component.scss']
})
export class WeeklyStandingsTableComponent {
displayedColumns: string[] = ['position', 'name', 'gameHandle', 'runTime'];
@Input() dataSource?: SeasonWeekEntry[];
}