tuto_angular/angular-tour-of-heroes/src/app/app.component.ts

11 lines
218 B
TypeScript
Raw Normal View History

2019-10-25 13:36:01 +00:00
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'Tour of Heroes';
}