import {Component, EventEmitter, Input, Output} from '@angular/core';
@Component({
selector: 'my-app',
template: `
Hello {{name}}
`,
standalone: false,
})
export class AppComponent {
name = 'Angular';
@Input() appInput = '';
@Output() appOutput = new EventEmitter();
}