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