mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Turns on the `strict` compiler flag and resolves the compilation errors in the various AIO examples. PR Close #41999
15 lines
362 B
TypeScript
15 lines
362 B
TypeScript
import { Component, Input } from '@angular/core';
|
|
import { Hero } from './hero';
|
|
|
|
@Component({
|
|
selector: 'app-hero-details',
|
|
template: `
|
|
<h2>{{hero.name}}</h2>
|
|
<app-hero-team [hero]=hero></app-hero-team>
|
|
<ng-content></ng-content>
|
|
`,
|
|
styleUrls: ['./hero-details.component.css']
|
|
})
|
|
export class HeroDetailsComponent {
|
|
@Input() hero!: Hero;
|
|
}
|