2019-10-11 11:40:35 +09:00
|
|
|
import { Component, OnInit, Input } from '@angular/core';
|
2019-11-06 13:48:06 +09:00
|
|
|
import { Info, EventJson } from '@ucap-webmessenger/protocol-event';
|
2019-10-07 13:49:12 +09:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'ucap-chat-message-box-text',
|
|
|
|
templateUrl: './text.component.html',
|
|
|
|
styleUrls: ['./text.component.scss']
|
|
|
|
})
|
|
|
|
export class TextComponent implements OnInit {
|
2019-10-11 11:40:35 +09:00
|
|
|
@Input()
|
2019-11-06 13:48:06 +09:00
|
|
|
message: Info<EventJson>;
|
2019-10-11 11:40:35 +09:00
|
|
|
|
2019-10-25 13:16:11 +09:00
|
|
|
test = `가<br>나<br >다<br/>라<br />마<br class=""/>바사`;
|
2019-10-07 13:49:12 +09:00
|
|
|
constructor() {}
|
|
|
|
|
|
|
|
ngOnInit() {}
|
|
|
|
}
|