Skip to content

Instantly share code, notes, and snippets.

@Ibro
Last active May 4, 2017 06:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ibro/5868bebd764111bcb058108c8e1a80bc to your computer and use it in GitHub Desktop.
Save Ibro/5868bebd764111bcb058108c8e1a80bc to your computer and use it in GitHub Desktop.
RxJS Socket.IO Angular Chat - Angular Component - Coding Blast - www.codingblast.com
import { Component } from '@angular/core';
import { ChatService } from '../chat.service';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'app works!';
constructor(chatService: ChatService) { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment