import {Component, Input} from '@angular/core'; @Component({ selector: 'app-title', template: '

{{ appName }} app is running!

', standalone: false, }) export class TitleComponent { @Input() appName = 'Unknown'; }