17 lines
368 B
TypeScript
Raw Normal View History

import { Component, OnInit, Input } from '@angular/core';
import { Info } from '@ucap-webmessenger/protocol-event';
2019-10-07 13:49:12 +09:00
@Component({
selector: 'ucap-chat-message-box-mass',
templateUrl: './mass.component.html',
styleUrls: ['./mass.component.scss']
})
export class MassComponent implements OnInit {
@Input()
message: Info;
2019-10-07 13:49:12 +09:00
constructor() {}
ngOnInit() {}
}