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