Files
aspnet-core-signalr-angular/app/shared/components/chat.component.ts
2016-10-03 15:26:25 +03:00

16 lines
336 B
TypeScript

import { Component, OnInit, Input } from '@angular/core';
import { Match } from '../interfaces';
@Component({
selector: 'chat',
templateUrl: 'app/shared/components/chat.component.html'
})
export class ChatComponent implements OnInit {
@Input() matches: Match[];
constructor() { }
ngOnInit() { }
}