import { Component, Input, OnInit } from '@angular/core'; import { TimeSlices } from '../../../../../../../../mocks/old-stuff/config/defaultConfigs'; @Component({ selector: 'app-time-list', templateUrl: './time-list.component.html', styleUrls: ['./time-list.component.scss'], }) export class TimeListComponent implements OnInit { @Input() public timeSlices: TimeSlices[]; timeList: any; constructor() {} ngOnInit(): void {} }