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