hourly blocks clock faces

This commit is contained in:
Mononaut
2023-04-15 05:26:18 +09:00
parent be5882edb3
commit 3b459b6857
13 changed files with 428 additions and 4 deletions

View File

@@ -0,0 +1,15 @@
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
}
}