next-ucap-messenger/projects/ucap-webmessenger-app/src/app/layouts/messenger/components/right-side.component.ts
2019-09-26 11:11:22 +09:00

15 lines
382 B
TypeScript

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