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[]; }