13 lines
321 B
TypeScript

import { Component, OnInit } from '@angular/core';
@Component({
selector: 'ucap-chat-message-box-video-conference',
templateUrl: './video-conference.component.html',
styleUrls: ['./video-conference.component.scss']
})
export class VideoConferenceComponent implements OnInit {
constructor() {}
ngOnInit() {}
}