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