fuse-angular/src/app/main/content/apps/chat/chat-start/chat-start.component.ts
2017-09-21 15:05:18 +03:00

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()
{
}
}