11 lines
191 B
TypeScript
11 lines
191 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-root',
|
|
template: `
|
|
<app-title></app-title>
|
|
<app-contact></app-contact>
|
|
`
|
|
})
|
|
export class AppComponent {}
|