2017-02-22 18:13:21 +00:00
|
|
|
import { Component } from '@angular/core';
|
|
|
|
|
|
|
|
|
|
@Component({
|
2017-08-22 21:31:15 +02:00
|
|
|
selector: 'app-root',
|
2017-02-22 18:13:21 +00:00
|
|
|
template: `
|
2017-10-17 17:36:22 -07:00
|
|
|
<app-title></app-title>
|
2017-02-22 18:13:21 +00:00
|
|
|
<app-contact></app-contact>
|
|
|
|
|
`
|
|
|
|
|
})
|
2017-10-17 17:36:22 -07:00
|
|
|
export class AppComponent {}
|