mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-22 09:17:47 +00:00
7 lines
159 B
TypeScript
7 lines
159 B
TypeScript
import { Component } from '@angular/core';
|
|
@Component({
|
|
selector: 'my-app',
|
|
template: '<h1>My First Angular App</h1>'
|
|
})
|
|
export class AppComponent { }
|