next-ucap-messenger/projects/ucap-webmessenger-app/src/app/layouts/messenger/components/right-side.component.ts

15 lines
382 B
TypeScript
Raw Normal View History

import { Component, OnInit } from '@angular/core';
import { ucapAnimations } from '@ucap-webmessenger/ui';
@Component({
2019-09-26 02:11:22 +00:00
selector: 'app-layout-messenger-right-side',
templateUrl: './right-side.component.html',
styleUrls: ['./right-side.component.scss'],
animations: ucapAnimations
})
2019-09-26 02:11:22 +00:00
export class RightSideComponent implements OnInit {
constructor() {}
ngOnInit() {}
}