Files
aspnet-core-signalr-angular/app/home/home.component.ts
2016-09-26 14:28:45 +03:00

11 lines
238 B
TypeScript

import { Component, OnInit } from '@angular/core';
@Component({
selector: 'home',
templateUrl: 'app/home/home.component.html'
})
export class HomeComponent implements OnInit {
constructor() { }
ngOnInit() { }
}