17 lines
268 B
TypeScript
17 lines
268 B
TypeScript
|
|
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 {
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|