Files
aspnet-core-signalr-angular/app/shared/components/match.component.ts
2016-09-30 10:51:07 +03:00

16 lines
335 B
TypeScript

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