mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-23 01:37:59 +00:00
11 lines
238 B
TypeScript
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() { }
|
|
} |