2016-08-09 12:31:52 -07:00

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)';
}