Files
hertzbeat/web-app/src/app/routes/alert/alert-notice/alert-notice.component.ts

17 lines
268 B
TypeScript
Raw Normal View History

import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-alert-notice',
templateUrl: './alert-notice.component.html',
styles: [
]
})
export class AlertNoticeComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}