15 lines
358 B
TypeScript
15 lines
358 B
TypeScript
|
import { Component, OnInit } from '@angular/core';
|
||
|
import { ucapAnimations } from '@ucap-webmessenger/ui';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-layout-chat-intro',
|
||
|
templateUrl: './intro.component.html',
|
||
|
styleUrls: ['./intro.component.scss'],
|
||
|
animations: ucapAnimations
|
||
|
})
|
||
|
export class IntroComponent implements OnInit {
|
||
|
constructor() {}
|
||
|
|
||
|
ngOnInit() {}
|
||
|
}
|