This commit adds an integration test that uses `@angular/elements` with `@angular/platform-server` in order to highlight a current incompatibility. The issue will be fixed in a subsequent commit. PR Close #40559
10 lines
210 B
TypeScript
10 lines
210 B
TypeScript
import { Component, Input } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-title',
|
|
template: '<h1>{{ appName }} app is running!</h1>',
|
|
})
|
|
export class TitleComponent {
|
|
@Input() appName = 'Unknown';
|
|
}
|