mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
All components, directives and pipes will now use standalone as default. Non-standalone decorators have now . PR Close #58160
10 lines
229 B
TypeScript
10 lines
229 B
TypeScript
import {Component, Input} from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-title',
|
|
template: '<h1>{{ appName }} app is running!</h1>',
|
|
standalone: false,
|
|
})
|
|
export class TitleComponent {
|
|
@Input() appName = 'Unknown';
|
|
}
|