13 lines
282 B
TypeScript
13 lines
282 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'ucap-chat-message-box-notice',
|
|
templateUrl: './notice.component.html',
|
|
styleUrls: ['./notice.component.scss']
|
|
})
|
|
export class NoticeComponent implements OnInit {
|
|
constructor() {}
|
|
|
|
ngOnInit() {}
|
|
}
|