mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-22 09:17:47 +00:00
16 lines
336 B
TypeScript
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() { }
|
|
} |