import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-clock-face', templateUrl: './clock-face.component.html', styleUrls: ['./clock-face.component.scss'], }) export class ClockFaceComponent implements OnInit { constructor() {} ngOnInit(): void { // initialize stuff } }