13 lines
233 B
TypeScript
13 lines
233 B
TypeScript
|
import { Component } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'my-app',
|
||
|
template: `
|
||
|
<app-title [subtitle]="subtitle"></app-title>
|
||
|
<app-contact></app-contact>
|
||
|
`
|
||
|
})
|
||
|
export class AppComponent {
|
||
|
subtitle = '(v2)';
|
||
|
}
|