mempool/frontend/src/app/components/clock-face/clock-face.component.ts

16 lines
314 B
TypeScript
Raw Normal View History

2023-04-15 05:26:18 +09:00
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
}
}