13 lines
233 B
TypeScript
Raw Normal View History

2016-07-12 18:14:13 -07:00
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)';
}