mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
12 lines
299 B
TypeScript
12 lines
299 B
TypeScript
import {Component, EventEmitter, Input, Output} from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'my-app',
|
|
template: `<h1>Hello {{ name }}</h1>`,
|
|
standalone: false,
|
|
})
|
|
export class AppComponent {
|
|
name = 'Angular';
|
|
@Input() appInput = '';
|
|
@Output() appOutput = new EventEmitter<string>();
|
|
}
|