angular/integration/cli-elements-universal/src/app/app.component.ts
George Kalpakas 177eab2260 ci: add integration test for Angular Elemens with SSR (#40559)
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
2021-02-12 08:55:25 -08:00

9 lines
213 B
TypeScript

import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: '<app-title-ce [appName]="title"></app-title-ce>',
})
export class AppComponent {
title = 'cli-elements-universal';
}