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