| 573 | |
| 574 | function createMyInputComponent(standalone: boolean) { |
| 575 | @Component({ |
| 576 | standalone, |
| 577 | selector: 'app', |
| 578 | template: '<input [name]="name">', |
| 579 | }) |
| 580 | class MyInputComponent { |
| 581 | @Input() name = ''; |
| 582 | } |
| 583 | |
| 584 | return MyInputComponent; |
| 585 | } |