Changes chat.service.ts to websocket-handler.service.ts

Will be used to handler sending and reciving of messages

Adds settings component

UNSURE WHY IT BREAKS
This commit is contained in:
GloriousCode
2017-09-05 17:47:20 +10:00
parent fcefa80cc8
commit 126c9e1646
13 changed files with 108 additions and 41 deletions

View File

@@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-settings',
templateUrl: './settings.component.html',
styleUrls: ['./settings.component.scss']
})
export class SettingsComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}