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