| 539 | |
| 540 | function createFalseAttributesComponents(standalone: boolean) { |
| 541 | @Component({ |
| 542 | standalone, |
| 543 | selector: 'my-child', |
| 544 | template: 'Works!', |
| 545 | }) |
| 546 | class MyChildComponent { |
| 547 | @Input() public attr!: boolean; |
| 548 | } |
| 549 | |
| 550 | @Component({ |
| 551 | standalone, |