next-ucap-messenger/projects/ucap-webmessenger-app/src/app/layouts/chat/components/messages.component.ts

17 lines
392 B
TypeScript
Raw Normal View History

import { Component, OnInit } from '@angular/core';
import { ucapAnimations } from '@ucap-webmessenger/ui';
@Component({
selector: 'app-layout-chat-messages',
templateUrl: './messages.component.html',
styleUrls: ['./messages.component.scss'],
animations: ucapAnimations
})
export class MessagesComponent implements OnInit {
constructor() {}
ngOnInit() {}
selectContact() {}
}