mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-18 14:22:35 +00:00
22 lines
417 B
TypeScript
22 lines
417 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { fuseAnimations } from '../../../../../core/animations';
|
|
|
|
@Component({
|
|
selector : 'fuse-chat-start',
|
|
templateUrl: './chat-start.component.html',
|
|
styleUrls : ['./chat-start.component.scss'],
|
|
animations : fuseAnimations
|
|
})
|
|
export class FuseChatStartComponent implements OnInit
|
|
{
|
|
|
|
constructor()
|
|
{
|
|
}
|
|
|
|
ngOnInit()
|
|
{
|
|
}
|
|
|
|
}
|