mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
12 lines
250 B
TypeScript
12 lines
250 B
TypeScript
// #docregion
|
|
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-banner',
|
|
templateUrl: './banner.component.html',
|
|
styleUrls: ['./banner.component.css']
|
|
})
|
|
export class BannerComponent {
|
|
title = 'Test Tour of Heroes';
|
|
}
|
|
|