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 { } }