mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
10 lines
213 B
TypeScript
10 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';
|
||
|
|
}
|