import { Component, OnInit, Input } from '@angular/core'; import { Info, EventJson } from '@ucap-webmessenger/protocol-event'; @Component({ selector: 'ucap-chat-message-box-text', templateUrl: './text.component.html', styleUrls: ['./text.component.scss'] }) export class TextComponent implements OnInit { @Input() message: Info; test = `가




바사`; constructor() {} ngOnInit() {} }