This commit removes all the docregion tags in examples that are not being referenced in any doc. PR Close #40479
14 lines
254 B
TypeScript
14 lines
254 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-root',
|
|
template: `
|
|
<h1>{{title}}</h1>
|
|
<h2>My favorite hero is: {{myHero}}</h2>
|
|
`
|
|
})
|
|
export class AppComponent {
|
|
title = 'Tour of Heroes';
|
|
myHero = 'Windstorm';
|
|
}
|