18 lines
458 B
TypeScript
Raw Normal View History

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 {
@Input()
2019-11-06 13:48:06 +09:00
message: Info<EventJson>;
test = `가<br>나<br >다<br/>라<br />마<br class=""/>바사`;
2019-10-07 13:49:12 +09:00
constructor() {}
ngOnInit() {}
}