Files
angular/aio/content/examples/ngmodule-faq/src/app/app.component.1b.ts
2018-01-10 16:26:46 -08:00

14 lines
258 B
TypeScript

// #docregion
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
// #docregion template
template: `
<app-title></app-title>
<app-contact></app-contact>
`
// #enddocregion template
})
export class AppComponent {}