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