Skip to content

Instantly share code, notes, and snippets.

@Ibro
Created May 5, 2017 18:13
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/9da535203d93ddb6d0e47ff8aae3cb9d to your computer and use it in GitHub Desktop.
Save Ibro/9da535203d93ddb6d0e47ff8aae3cb9d to your computer and use it in GitHub Desktop.
RxJS Socket.IO Angular Chat - Angular Component Template - Coding Blast - www.codingblast.com
<div *ngFor="let message of messages">
{{message}}
</div>
<input [(ngModel)]="message" (keyup)="$event.keyCode == 13 && sendMessage()" />
<button (click)="sendMessage()">Send</button>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment