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