import { Component, OnInit, Input } from '@angular/core'; import { Info } from '@ucap-webmessenger/protocol-event'; import { LoginResponse } from '@ucap-webmessenger/protocol-authentication'; @Component({ selector: 'ucap-chat-messages', templateUrl: './messages.component.html', styleUrls: ['./messages.component.scss'] }) export class MessagesComponent implements OnInit { @Input() loginRes: LoginResponse; @Input() messages: Info[]; constructor() {} ngOnInit() {} }