fuse-angular/src/app/main/apps/chat/chat.component.ts
mustafahlvc c3e241c81c Layout Service created,
Starting the build navigation,
Some Components added for tests.
2017-07-08 19:12:52 +03:00

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