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

15 lines
378 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-left-side',
templateUrl: './left-side.component.html',
styleUrls: ['./left-side.component.scss'],
animations: ucapAnimations
})
2019-09-26 02:11:22 +00:00
export class LeftSideComponent implements OnInit {
constructor() {}
ngOnInit() {}
}